- componentsSeparatedByString:
Returns an array containing substrings from the receiver that have been divided by a given separator.
このレシーバからの下位文字列それらを含んでいるある配列を返します、それらは与えられた分離子によって分けられます。
- componentsSeparatedByCharactersInSet:
Returns an array containing substrings from the receiver that have been divided by characters in a given 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.
与えられたインデックスでのものに至るまでの、しかしそれを含んでいない、レシーバの文字を含んでいる新しい文字列を返します。