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

components(separatedBy:)

Returns an array containing substrings from the receiver that have been divided by a given separator. このレシーバからの下位文字列それらを含んでいるある配列を返します、それらは与えられた分離子によって分けられます。

Declaration 宣言

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

Parameters パラメータ

separator

The separator string. 分離子の文字列。

Return Value 戻り値

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

Discussion 議論

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


NSString *list = @"Karin, Carrie, David";
NSArray *listItems = [list componentsSeparatedByString:@", "];

produces the array @[@"Karin", @"Carrie", @"David"]. 配列@[@"Karin", @"Carrie", @"David"]を生成します。

If list begins with a comma and space—for example, @", Norman, Stanley, Fletcher"—the array has these contents: @[@"", @"Norman", @"Stanley", @"Fletcher"]. listがコンマと空白で始まるならば — 例えば、@", Norman, Stanley, Fletcher" — 配列は3つの内容を持ちます:@[@"", @"Norman", @"Stanley", @"Fletcher"]

If list has no separators—for example, @"Karin"—the array contains the string itself, in this case @[@"Karin"]. listが分離子を持たないならば — 例えば、@"Karin" — 配列は文字列それ自体を含みます、この場合には@[@"Karin"]

See Also 参照

Dividing Strings 文字列を分割する

Related Documentation 関連文書