Function 関数

NSRangeFromString(_:)

Returns a range from a textual representation. あるテキスト表現から範囲を返します。

Declaration 宣言

func NSRangeFromString(_ aString: String) -> NSRange

Discussion 議論

Scans aString for two integers which are used as the location and length values, in that order, to create an NSRange struct. If aString only contains a single integer, it is used as the location value. If aString does not contain any integers, this function returns an NSRange struct whose location and length values are both 0. aStringを走査して位置と長さの値として使われる2つの整数を、その順序で、探して、NSRange構造体を作成します。aStringがただ1つの整数を含むならば、それは位置の値として使われます。aStringが何ら整数を含まないならば、この関数はNSRange構造体を返し、それの位置と長さの値は両方とも0です。

See Also 参照

Managing Ranges 範囲を管理する