var pattern: String
Returns the regular expression pattern.
正規表現パターンを返します。
var numberOfCaptureGroups : Int
Returns the number of capture groups in the regular expression.
その正規表現での捕獲グループの数を返します。
Availability 有効性
Technology
var options: NSRegularExpression
.Options
{ get }
The options property specifies aspects of the regular expression matching that are always used when matching the regular expression. For example, if the expression is case sensitive, allows comments, ignores metacharacters, etc. See NSRegular
for a complete discussion of the possible constants and their meanings.
optionsプロパティは、正規表現と合致するものを見つける時に常に使われる、正規表現マッチングの様々な面を指定します。例えば、その表現が大文字小文字等を考慮するか、コメントを許可するか、メタ文字を無視するか、など。可能な定数とそれらの意味の完全な議論のためにNSRegular
を見てください。
var pattern: String
var numberOfCaptureGroups : Int
+ regularExpressionWithPattern:options:error:
init(pattern: String, options: NSRegularExpression.Options)