ios 字符串
时间:2014-07-06 11:18:41
收藏:0
阅读:226
1、判断字符串是否包含某个字符
if( [str rangeOfString:@"hello"].location != NSNotFound) {
NSLog(@"yes");
} else {
NSLog(@"no");
}
评论(0)