Ruby 字符串 delete_suffix方法
delete_suffix 是Ruby中的一个字符串类方法,用于返回一个删除后缀的字符串副本。
语法: str.delete_suffix
参数: 这里,str是给定的字符串。
返回: 给定字符串的副本,删除后缀。
例子 1 :
# Ruby program to demonstrate
# the delete_suffix method
# Taking a string and
# using the method
puts "Ruby".delete_suffix("by")
puts "Class".delete_suffix("s")
输出
Ru
Clas
例2 :
# Ruby program to demonstrate
# the delete_suffix method
# Taking a string and
# using the method
puts "Sample".delete_suffix("pl")
puts "Input".delete_suffix("ut")
输出
Sample
Inp