删除!是Ruby中的String类方法,用于执行删除操作,返回给定的字符串,如果未修改给定的字符串,则返回nil。
用法: str.delete!(parameter_list)
参数:在这里,str是给定的字符串,parameter_list是指定的字符。
返回:如果未修改字符串,则为nil。
范例1:
# Ruby program to demonstrate
# the delete! method
# Taking a string and
# using the method
str = "String Counting"
puts str.delete! "ing"
输出:
Str Cout
范例2:
# Ruby program to demonstrate
# the delete! method
# Taking a string and
# using the method
str = "String Counting"
puts str.delete! "ing", "^n"
str2 = "Ruby Method"
puts str2.delete! "ZXC"
输出:
Strn Countn
相关用法
- Ruby String delete()用法及代码示例
- Ruby String chr用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String hex用法及代码示例
- Ruby String byteslice用法及代码示例
- Ruby String bytes用法及代码示例
- Ruby String chars()用法及代码示例
- Ruby String inspect用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String delete! Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。