📜  红宝石 |字符串 casecmp?方法

📅  最后修改于: 2022-05-13 01:55:26.447000             🧑  作者: Mango

红宝石 |字符串 casecmp?方法

案例cmp?是 Ruby 中的 String 类方法,用于在 Unicode 大小写折叠后两个字符串相等时返回true ,如果不相等则返回false

示例 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