static var reportProgress : NSRegularExpression.MatchingOptions
Call the Block periodically during long-running match operations. This option has no effect for methods other than
enumerateMatches(in:options:range:using:)
. See enumerateMatches(in:options:range:using:)
for a description of the constant in context.
長く行われているマッチ操作の間、定期的に「ブロック」を呼びます。このオプションは、enumerateMatches(in:options:range:using:)
メソッド以外には効果がありません。前後関係におけるこの定数の説明としてenumerateMatches(in:options:range:using:)
を見てください。
static var reportCompletion : NSRegularExpression.MatchingOptions
Call the Block once after the completion of any matching. This option has no effect for methods other than
enumerateMatches(in:options:range:using:)
. See enumerateMatches(in:options:range:using:)
for a description of the constant in context.
何らかのマッチングの完成の後、「ブロック」を一度呼びます。このオプションは、enumerateMatches(in:options:range:using:)
メソッド以外には効果がありません。前後関係におけるこの定数の説明としてenumerateMatches(in:options:range:using:)
を見てください。
static var anchored: NSRegularExpression.MatchingOptions
Specifies that matches are limited to those at the start of the search range. See
enumerateMatches(in:options:range:using:)
for a description of the constant in context.
マッチが検索範囲の始まりでのものに限定されることを示します。前後関係におけるこの定数の説明としてenumerateMatches(in:options:range:using:)
を見てください。
static var withTransparentBounds : NSRegularExpression.MatchingOptions
Specifies that matching may examine parts of the string beyond the bounds of the search range, for purposes such as word boundary detection, lookahead, etc. This constant has no effect if the search range contains the entire string. See
enumerateMatches(in:options:range:using:)
for a description of the constant in context.
語境界検出、先読み検索、などのような目的のために、マッチングが検索範囲の境界を越える文字列の一部かどうかを調べるように指定します。検索範囲が文字列全体を含むならば、この定数には効果がありません。前後関係におけるこの定数の説明としてenumerateMatches(in:options:range:using:)
を見てください。
static var withoutAnchoringBounds : NSRegularExpression.MatchingOptions
Specifies that
^
and $
will not automatically match the beginning and end of the search range, but will still match the beginning and end of the entire string. This constant has no effect if the search range contains the entire string. See enumerateMatches(in:options:range:using:)
for a description of the constant in context.
^
と$
が自動的には検索範囲の始まりと終わりにマッチしないこと、しかし依然とし文字列全体の始まりと終わりにマッチすることを示します。検索範囲が文字列全体を含むならば、この定数には効果がありません。前後関係におけるこの定数の説明としてenumerateMatches(in:options:range:using:)
を見てください。