NSString *tmpStr = @"asd苏打绿1234中介";
NSRange range = [tmpStr rangeOfString:@"苏打绿"];
if (range.location != NSNotFound) {
NSLog(@"found at location = %lu, length = %lu",(unsigned long)range.location,(unsigned long)range.length);
NSString *ok = [tmpStr substringFromIndex:range.location];
NSLog(@"%@",ok);
}else{
NSLog(@"Not Found");
}
网友评论