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

replaceCharacters(in:with:)

Replaces the characters from aRange with those in aString. aRangeからの文字をaStringの中のそれらで置き換えます。

Declaration 宣言

func replaceCharacters(in range: NSRange, 
                  with aString: String)

Parameters パラメータ

aRange

The range of characters to replace. aRange must not exceed the bounds of the receiver. 置き換える文字範囲。aRangeは、レシーバの境界を越えてはいけません。

aString

The string with which to replace the characters in aRange. aString must not be nil. この文字列でaRangeの中の文字を置き換えることになります。aStringは、nilであってはいけません。

Discussion 議論

This method treats the length of the string as a valid range value that returns an empty string. このメソッドは、文字列の長さをある有効な範囲値として扱います、それは空文字列を返します。

See Also 参照

Modifying a String 文字列を修正する