func components(separatedBy : CharacterSet) -> [String]
func trimmingCharacters (in: CharacterSet) -> String
func substring(from: Int) -> String
func substring(with: NSRange) -> String
func substring(to: Int) -> String
Availability 有効性
Technology
separator
The separator string. 分離子の文字列。
An NSArray
object containing substrings from the receiver that have been divided by separator
.
あるNSArray
オブジェクト、レシーバから下位文字列それらを含んでいます、それらはseparator
によって分離されたものです。
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: 配列の中の下位文字列は、それらがレシーバでそうだった順番で現れます。分離子の文字列の隣接出現は、結果において空の文字列を生み出します。同様に、文字列が分離子で始まるまたは終わるならば、最初のまたは最後の下位文字列は、それぞれ、空です。例えば、このコード断片は:
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"]
。
func components(separatedBy : CharacterSet) -> [String]
func trimmingCharacters (in: CharacterSet) -> String
func substring(from: Int) -> String
func substring(with: NSRange) -> String
func substring(to: Int) -> String
var pathComponents : [String]
func componentsJoined (by: String) -> String
NSString
object that is the result of interposing a given separator between the elements of the array.
NSString
オブジェクトを作成して返します、それは与えられた分離子を配列の要素の間に挟むことの結果です。