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


Ruby String eql?用法及代码示例


eql?是Ruby中的String类方法,用于检查字符串的长度和内容是否相等。

用法: 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


相关用法


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