当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String casecmp用法及代码示例


casecmp是Ruby中的String类方法,它是String#的不区分大小写的版本。目前,不区分大小写仅适用于字符A-Z /a-z,而不适用于所有Unicode字符。此方法不同于casecmp!方法。

用法: str.casecmp(other_str)

参数:此处,str是要检查的给定字符串,而other_str是与str比较的字符串。


返回值:此方法将基于str和other_str的相等性返回true或false。如果两个字符串的编码不兼容,或者other_str不是字符串,则它也可以返回nil。

范例1:

# Ruby program to demonstrate 
# the casecmp method 
  
# Taking a string and 
# using the method 
puts "RuBy".casecmp("ruby") 
puts "GeeksforGeeks".casecmp("gfg")

输出:

0
-1

范例2:

# Ruby program to demonstrate 
# the casecmp method 
  
# Taking a string and 
# using the method 
# here it will give nil 
puts "\u{e5 f6 dc}".encode("ISO-8859-1").casecmp("\u{c4 d4 de}") 
  
puts "GFG".casecmp("250")

输出:


1


相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String casecmp Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。