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

ios 不区分字符串大小写的比较

时间:2015-04-17 18:09:13      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:ios   ios开发   string   

  1. NSString *str;    
  2. // 使用stringWithFormat生成一格式化字符串    
  3. str = [NSString stringWithFormat:@"This is %@","John"];    
  4. NSLog(@"str--->%@",str);    
  5. // 字符串长度length;    
  6. NSLog(@"The length of this string is %@",[str length]);    
  7. // 字符串比较 isEqualToString, 返回NO(false),isEqualToString区分大小写    
  8. BOOL isequal = [str isEqualToString:@"this is John"];    
  9.     
  10. // 字符串序列比列 compare,返回结果NSComparisonResult    
  11. // type enum _NSComparisonResult{    
  12. //     NSOrderedAscending = -1,    
  13. //     NSOrderedSame,    
  14. //     NSOrderedDescending    
  15.         // }    
  16. int result = [@"bool" compare:@"cool"];    
  17. NSLog(@"The result is %d",result);    
  18.     
  19. // compare 比较规则options    
  20. // NSLiteralSearch 区分大小写(完全比较)    
  21. // NSCaseInsensitiveSearch 不区分大小写    
  22. // NSNumericSearch 只比较字符串的个数,而不比较字符串的字面值    
  23. int result1 = [@"This is John" compare:@"this is John" options:NSCaseInsensitiveSearch | NSNumericSearch];    
  24. NSLog(@"The result is %d",result1);    
  25.     
  26. // 字符串开头是否包括另一字符串 hasPrefix,返回结果YES(true)    
  27. BOOL isHas = [str hasPrefix:@"This"];    
  28. // 字符串结尾是否包括另一字符串 hasSuffix,返回结果YES(true)    
  29. BOOL isHas = [str hasSuffix:@"John"];    
  30.     
  31. // 查找字符串在另一字符串中的位置    
  32. NSRange range = [str rangeOfString:@"is" options:NSCaseInsensitiveSearch];    
  33. NSLog(@"The location in the string named ‘str‘ of ‘is‘ is @d",range.location);   

ios 不区分字符串大小写的比较

标签:ios   ios开发   string   

原文地址:http://blog.csdn.net/yangchen9931/article/details/45099901

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