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

components(separatedBy:)

Returns an array containing substrings from the receiver that have been divided by characters in a given set. レシーバから会文字列を含んでいる配列を返します、それは与えられた集合の中の文字によって分割されたものです。

Declaration 宣言

func components(separatedBy separator: CharacterSet) -> [String]

Parameters パラメータ

separator

A character set containing the characters to use to split the receiver. Must not be nil. レシーバを分割するのに使う文字を含んでいる文字集合。nilであってはいけません。

Return Value 戻り値

An NSArray object containing substrings from the receiver that have been divided by characters in separator. あるNSArrayオブジェクト、レシーバからの下位文字列を含んでいます、それはseparatorの中の文字によって分離されています。

Discussion 議論

The substrings in the array appear in the order they did in the receiver. Adjacent occurrences of the separator characters produce empty strings in the result. Similarly, if the string begins or ends with separator characters, the first or last substring, respectively, is empty. 配列の中の下位文字列は、それらがレシーバでそうだった順番で現れます。分離子の文字の隣接出現は、結果において空の文字列を生み出します。同様に、文字列が分離子の文字で始まるまたは終わるならば、最初のまたは最後の下位文字列は、それぞれ、空です。

See Also 参照

Dividing Strings 文字列を分割する