func components(separatedBy : String) -> [String]
Returns an array containing substrings from the receiver that have been divided by a given separator.
このレシーバからの下位文字列それらを含んでいるある配列を返します、それらは与えられた分離子によって分けられます。
func components(separatedBy : CharacterSet) -> [String]
Returns an array containing substrings from the receiver that have been divided by characters in a given set.
レシーバから会文字列を含んでいる配列を返します、それは与えられた集合の中の文字によって分割されたものです。
func trimmingCharacters (in: CharacterSet) -> String
Returns a new string made by removing from both ends of the receiver characters contained in a given character set.
新しい文字列を返します、レシーバの両端からある与えられた集合に含まれる文字を取り除くことによって作られます。
func substring(with: NSRange) -> String
Returns a string object containing the characters of the receiver that lie within a given range.
与えられた範囲内に置かれている、レシーバの文字を含んでいる文字列オブジェクトを返します。
func substring(to: Int) -> String
Returns a new string containing the characters of the receiver up to, but not including, the one at a given index.
与えられたインデックスでのものに至るまでの、しかしそれを含んでいない、レシーバの文字を含んでいる新しい文字列を返します。