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

substring(to:)

Returns a new string containing the characters of the receiver up to, but not including, the one at a given index. 与えられたインデックスでのものに至るまでの、しかしそれを含んでいない、レシーバの文字を含んでいる新しい文字列を返します。

Declaration 宣言

func substring(to: Int) -> String

Parameters パラメータ

anIndex

An index. The value must lie within the bounds of the receiver, or be equal to the length of the receiver. あるインデックス。値は、レシーバの境界内に置かれている、またはレシーバの長さと等しい必要があります。

Raises an rangeException if (anIndex - 1) lies beyond the end of the receiver. rangeExceptionを引き起こします、もし (anIndex - 1) がレシーバの終わりを越えて横たわるならば。

Return Value 戻り値

A new string containing the characters of the receiver up to, but not including, the one at anIndex. If anIndex is equal to the length of the string, returns a copy of the receiver. anIndexでのものに至るまで、しかしそれを含んでいない、レシーバの文字を含んでいるある新しい文字列。anIndexが文字列の長さと等しいならば、レシーバのコピーを返します。

See Also 参照

Dividing Strings 文字列を分割する