- initWithPattern:options:error:
Returns an initialized NSRegularExpression instance with the specified regular expression pattern and options.
指定された正規表現パターンとオプションを使って初期化されたNSRegularExpressionインスタンスを返します。
Availability 有効性
Technology
+ (NSRegularExpression
*)regularExpressionWithPattern:(NSString
*)pattern
options:(NSRegularExpressionOptions
)options
error:(NSError
* _Nullable *)error;
pattern
パターン
The regular expression pattern to compile. コンパイルする正規表現パターン。
options
オプション
The matching options. See NSRegular
for possible values. The values can be combined using the C-bitwise OR
operator.
マッチング・オプション。NSRegular
を可能な値のために見てください。値は、C-bitwise OR
演算子を使用して結合されることができます。
error
An out value that returns any error encountered during initialization. Returns an NSError
object if the regular expression pattern is invalid; otherwise returns nil
.
初期化の間に遭遇されるどんなエラーでも返す、問題が起こったときの値。正規表現パターンが無効ならばNSError
オブジェクトを返します;そうでなければnil
を返します。
An instance of NSRegular
for the specified regular expression and options.
指定された正規表現とオプションのNSRegular
インスタンス。
- initWithPattern:options:error: