- stringByReplacingMatchesInString:options:range:withTemplate:
Returns a new string containing matching regular expressions replaced with the template string.
正規表現にマッチするものをテンプレート文字列と取り替えられたもの含んでいる新しい文字列を返します。
Availability 有効性
Technology
- (NSUInteger
)replaceMatchesInString:(NSMutableString
*)string
options:(NSMatchingOptions
)options
range:(NSRange
)range
withTemplate:(NSString
*)templ;
string
The mutable string to search and replace 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. マッチするインスタンスを取り替えるときに使われる置換用テンプレート。
The number of matches. マッチの数。
See Flag Options for the format of template
.
フラグ・オプションをtemplate
の書式のために見てください。
- stringByReplacingMatchesInString:options:range:withTemplate: