iphone 字符串分隔与组合
生活随笔
收集整理的這篇文章主要介紹了
iphone 字符串分隔与组合
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
使用componentsSeparatedByString將字符串分隔成NSArray 數組
代碼如下:
NSString *st = @"wta,wtb,wtc,wtd,wte,wtf,wtg,wth,wti,wtj";
NSArray *sarray = [st componentsSeparatedByString:@","];
for (int i=0; i<[sarray count]; i++) {
NSLog(@"value:%@",[sarray objectAtIndex:i]);
}?
?
使用componentsJoinedByString?將字符串連接成字符串。
代碼如下:
NSString *join=[sarray componentsJoinedByString:@"---"];?
?
轉載于:https://www.cnblogs.com/85538649/archive/2011/10/05/2199434.html
總結
以上是生活随笔為你收集整理的iphone 字符串分隔与组合的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C++中,float double区别
- 下一篇: 项目组织结构小议