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

substring(from:)

Returns a new string containing the characters of the receiver from the one at a given index to the end. 与えられたインデックスでのものから終わりまでのレシーバの文字を含んでいる新しい文字列を返します。

Declaration 宣言

func substring(from: 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 from the one at anIndex to the end. If anIndex is equal to the length of the string, returns an empty string. ある新しい文字列、レシーバの文字をanIndexでのものから終わりまで含んでいます。anIndexが文字列の長さに等しいならば、空の文字列を返します。

See Also 参照

Dividing Strings 文字列を分割する