static var caseInsensitive : NSRegularExpression.Options
Match letters in the pattern independent of case.
大文字小文字等と無関係にパターンの文字にマッチします。
static var allowCommentsAndWhitespace : NSRegularExpression.Options
Ignore whitespace and #-prefixed comments in the pattern.
パターンにおいて空白と#接頭辞をつけられたコメントを無視します。
static var ignoreMetacharacters : NSRegularExpression.Options
Treat the entire pattern as a literal string.
全てのパターンをリテラル(文字通りの)文字列とみなします。
static var dotMatchesLineSeparators : NSRegularExpression.Options
Allow
.
to match any character, including line separators.
.
に行分離子を含むどんな文字でもマッチすることを認めます。
static var anchorsMatchLines : NSRegularExpression.Options
Allow
^
and $
to match the start and end of lines.
^
と$
が行の始まりと終わりにマッチするのを許します。
static var useUnixLineSeparators : NSRegularExpression.Options
Treat only
\n
as a line separator (otherwise, all standard line separators are used).
\n
だけを行分離子とみなします(一方そうしなければ、全ての標準的な行分離子が使われます)。
static var useUnicodeWordBoundaries : NSRegularExpression.Options
Use Unicode
TR#29
to specify word boundaries (otherwise, traditional regular expression word boundaries are used).
語境界を指定するために、Unicode TR#29
を使います(一方そうしなければ、従来の正規表現語境界が使われます)。