码迷,mamicode.com
首页 > 移动开发 > 详细

iOS搜索指定字符在字符串中的位置

时间:2016-11-23 19:12:28      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:geo   rom   span   substring   dex   otf   pre   min   bsp   

 1 NSString *tmpStr = @"asd341234aaaaccd";  
 2 
 3   NSRange range;  
 4 
 5   range = [tmpStr rangeOfString:@"ccd"];  
 6 
 7 if (range.location != NSNotFound) {  
 8 
 9       NSLog(@"found at location = %lu, length = %lu",(unsigned long)range.location,(unsigned long)range.length);  
10 
11 NSString *ok = [tmpStr substringFromIndex:range.location];  
12 
13       NSLog(@"%@",ok);  
14 
15   }else{  
16 
17       NSLog(@"Not Found");  
18 
19   }

 

iOS搜索指定字符在字符串中的位置

标签:geo   rom   span   substring   dex   otf   pre   min   bsp   

原文地址:http://www.cnblogs.com/crazygeek/p/6094615.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!