The string to insert into the receiver. aString must not be nil.
レシーバに挿入される文字列。aStringは、nilであってはいけません。
anIndex
The location at which aString is inserted. The location must not exceed the bounds of the receiver.
それでaStringが挿入される位置。位置は、レシーバの境界を越えてはいけません。
Discussion
議論
The new characters begin at anIndex and the existing characters from anIndex to the end are shifted by the length of aString.
新しい文字は、anIndexで始まります、そしてanIndexから終わりまでの既存の文字は、aStringの長さだけずらされます。
This method treats the length of the string as a valid index value that returns an empty string.
このメソッドは、文字列の長さをある有効なインデックス値として扱います、それは空文字列を返します。
Replaces all occurrences of a given string in a given range with another given string, returning the number of replacements.
ある与えられた文字列の全ての発生をある与えられた範囲において別の与えられた文字列で置き換えます、置き換えの数を返します。