字符串的截取

例如:截取字符串”20 | http://www.baidu.com”中,”|”字符前面和后面的数据,分别输出它们。

解决方法 :
// 采用 componentsSeparatedByString
NSString * str = @"20|http://www.baidu.com";
for(NSString *s in [str componentsSeparatedByString:@"|"]){
NSLog(@"%@",s);
}

你可能感兴趣的:(字符串的截取)