目的cの文字列を配列に分割する方法はありますか?私はこれを意味します-入力文字列Yes:0:42:valueの配列に(Yes、0,42、value)?
目的cの文字列を配列に分割する方法はありますか?私はこれを意味します-入力文字列Yes:0:42:valueの配列に(Yes、0,42、value)?
回答:
NSArray *arrayOfComponents = [yourString componentsSeparatedByString:@":"];
yourStringに含まれる場所 @"one:two:three"
そしてarrayOfComponentsは含まれます @[@"one", @"two", @"three"]
そしてあなたはそれぞれにアクセスできます NSString *comp1 = arrayOfComponents[0];
(https://developer.apple.com/documentation/foundation/nsstring/1413214-componentsseparatedbystring)
これを使用してください:[[string componentsSeparatedByString:@ "、"] [0];
[NSArray componentsJoinedByString:]
。