func components(separatedBy : String) -> [String]
Returns an array containing substrings from the receiver that have been divided by a given separator.
このレシーバからの下位文字列それらを含んでいるある配列を返します、それらは与えられた分離子によって分けられます。
NSString
object that is the result of interposing a given separator between the elements of the array.
NSString
オブジェクトを作成して返します、それは与えられた分離子を配列の要素の間に挟むことの結果です。
Availability 有効性
Technology
separator
The string to interpose between the elements of the array. 配列の要素の間に挟むことになる文字列。
An NSString
object that is the result of interposing separator
between the elements of the array. If the array has no elements, returns an NSString
object representing an empty string.
あるNSString
オブジェクト、それはseparator
を配列の要素の間に挟むことの結果です。配列が要素を持たないならば、空文字列を表しているNSString
を返します。
For example, this code excerpt writes "here be dragons
" to the console:
例えば、このコード抜粋は "here be dragons
" をコンソールに書き出します:
Each element in the array must handle description
.
配列の各要素は、description
をうまく扱わなければなりません。
func components(separatedBy : String) -> [String]