ios 不區分字串大小寫比較,ios大小寫

來源:互聯網
上載者:User

ios 不區分字串大小寫比較,ios大小寫

  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);   

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.