Ruby 字符串 delete_suffix!方法
delete_suffix! 是Ruby中的一个字符串类方法,用于返回一个被删除了后缀的字符串副本,如果没有改变,则返回nil。
语法: str.delete_suffix!
参数: 这里,str是给定的字符串。
返回: 给定字符串的副本,后缀被删除,如果没有改变,则返回nil。
例子 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")
输出
Inp