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