ios 字符串的比较

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值