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


Ruby String casecmp?用法及代码示例


casecmp?是Ruby中的String类方法,如果两个字符串在Unicode大小写折叠后相等,则返回true,否则返回false。

用法: str.casecmp?(other_str)

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


返回:此方法将根据str和other_str的相等性返回数字。如果两个字符串的编码不兼容,或者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")

输出:

true
false

范例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")

输出:


false


相关用法


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