testingstring是以另一个string开始还是结束

我应该如何检查一个string是否以给定的string开始或结束? 似乎没有任何内置的方法可用(或者,也许只是我使用的IDE没有显示:RDE)

有内置的方法:

"String".start_with? "S" # true "String".end_with? "4" # false 
 string.start_with?("substring") string.end_with?("substring") 

返回true或false

资源:

http://ruby-doc.org//core-2.2.0/String.html#method-i-start_with-3F

http://ruby-doc.org//core-2.2.0/String.html#method-i-end_with-3F