Ruby 字符串 eql?方法
eql? 是Ruby中的一个字符串类方法,用于检查字符串是否具有相同的长度和内容。
语法: str.eql?(Other_str)
参数: 这里,str和other_str是字符串。
返回: 在相等的基础上 返回 真或假。
例1 :
# Ruby program to demonstrate
# the eql? method
# Taking a string and
# using the method
puts "Sample".eql?("Sample")
# case sensitive
puts "Program".eql?("program")
输出
true
false
例2 :
# Ruby program to demonstrate
# the eql? method
# Taking a string and
# using the method
puts "Ruby".eql?("ruby")
# case sensitive
puts "String".eql?("String")
输出
false
true