Instance Method
インスタンスメソッド
componentsSeparatedByCharactersInSet:
Returns an array containing substrings from the receiver that have been divided by characters in a given set.
レシーバから会文字列を含んでいる配列を返します、それは与えられた集合の中の文字によって分割されたものです。
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
文字列を分割する
- componentsSeparatedByString:
Returns an array containing substrings from the receiver that have been divided by a given separator.
このレシーバからの下位文字列それらを含んでいるある配列を返します、それらは与えられた分離子によって分けられます。
- stringByTrimmingCharactersInSet:
Returns a new string made by removing from both ends of the receiver characters contained in a given character set.
新しい文字列を返します、レシーバの両端からある与えられた集合に含まれる文字を取り除くことによって作られます。
- substringFromIndex:
Returns a new string containing the characters of the receiver from the one at a given index to the end.
与えられたインデックスでのものから終わりまでのレシーバの文字を含んでいる新しい文字列を返します。
- substringWithRange:
Returns a string object containing the characters of the receiver that lie within a given range.
与えられた範囲内に置かれている、レシーバの文字を含んでいる文字列オブジェクトを返します。
- substringToIndex:
Returns a new string containing the characters of the receiver up to, but not including, the one at a given index.
与えられたインデックスでのものに至るまでの、しかしそれを含んでいない、レシーバの文字を含んでいる新しい文字列を返します。