Ruby 字符串 end_with?方法

Ruby 字符串 end_with?方法

end_with? 是Ruby中的一个字符串类方法,用于检查指定的字符串是否以给定的后缀之一结束。

语法: str.end_with?

参数: 这里,str是给定的字符串。

返回: 如果匹配则为true,否则返回false。

例子 1 :

# Ruby program to demonstrate 
# the end_with? method 
       
# Taking a string and 
# using the method
puts "Ruby".end_with?("by") 
puts "String".end_with?("ab") 

输出

true
false

例2 :

# Ruby program to demonstrate 
# the end_with? method 
       
# Taking a string and 
# using the method
# returns true if one of
# the +suffixes+ matches.
puts "Sample".end_with?("ple", "sam")
puts "Program".end_with?("gr", "pro") 

输出

true
false

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程