- replaceMatchesInString:options:range:withTemplate:
Replaces regular expression matches within the mutable string using the template string.
可変文字列内の正規表現マッチを、テンプレート文字列を使って置き替えます。
Availability 有効性
Technology
- (NSString
*)stringByReplacingMatchesInString:(NSString
*)string
options:(NSMatchingOptions
)options
range:(NSRange
)range
withTemplate:(NSString
*)templ;
string
The string to search for values within. 値を捜す文字列。
options
オプション
The matching options to use. See NSMatching
for possible values.
使用するマッチング・オプション。可能な値のためにNSMatching
を見てください。
range
The range of the string to search. 捜す文字列の範囲。
template
The substitution template used when replacing matching instances. マッチするインスタンスを取り替えるときに使われる置換用テンプレート。
A string with matching regular expressions replaced by the template string. テンプレート文字列と取り替えられた、正規表現にマッチしている文字列。
See Flag Options for the format of template
.
フラグ・オプションをtemplate
の書式のために見てください。
- replaceMatchesInString:options:range:withTemplate: