delete是Ruby中的String类方法,用于返回给定字符串的副本,该副本的参数交点处的所有字符均被删除。
用法: str.delete(parameter_list)
参数:在这里,str是给定的字符串,parameter_list是指定的字符。
返回值:一个字符串的新副本,其中所有字符都位于其参数的交点处。
示例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\\r\\n"
puts str2.delete "\\"
输出:
Strn Countn Ruby Methodrn
相关用法
- Ruby String delete!用法及代码示例
- Ruby String chr用法及代码示例
- Ruby String hex用法及代码示例
- Ruby String eql?用法及代码示例
- Ruby String center()用法及代码示例
- Ruby String inspect用法及代码示例
- Ruby String capitalize()用法及代码示例
- Ruby String end_with?用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String delete() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。