Instance Method インスタンスメソッド

replaceMatches(in:options:range:withTemplate:)

Replaces regular expression matches within the mutable string using the template string. 可変文字列内の正規表現マッチを、テンプレート文字列を使って置き替えます。

Declaration 宣言

func replaceMatches(in string: NSMutableString, 
            options: NSRegularExpression.MatchingOptions = [], 
              range: NSRange, 
       withTemplate templ: String) -> Int

Parameters パラメータ

string

The mutable string to search and replace values within. 内部の値を検索置換する、可変の文字列。

options オプション

The matching options to use. See NSRegularExpression.MatchingOptions for possible values. 使用するマッチング・オプション。NSRegularExpression.MatchingOptionsを可能な値のために見てください。

range

The range of the string to search. 捜す文字列の範囲。

template

The substitution template used when replacing matching instances. マッチするインスタンスを取り替えるときに使われる置換用テンプレート。

Return Value 戻り値

The number of matches. マッチの数。

Discussion 議論

See Flag Options for the format of template. フラグ・オプションtemplateの書式のために見てください。

See Also 参照

Replacing Strings Using Regular Expressions 正規表現を使って文字列を置換する