Ruby 字符串 eql?方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程