当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby String gsub!用法及代码示例


gsub!是Ruby中的String类方法,用于返回给定字符串的副本,其中所有出现的模式都替换为第二个参数。如果未执行任何替换,则它将返回nil。如果没有块并且没有给出替换,则返回一个枚举器。

用法: str.gsub!(pattern, replacement)

参数:在这里,str是给定的字符串。可以指定要删除的正则表达式或字符集。替换是要放置的字符集。


返回:字符串的副本,其中所有出现的模式都替换为第二个参数,如果没有执行替换,则为nil。

范例1:

# Ruby program to demonstrate  
# the gsub! method  
       
# Taking a string and  
# using the method 
puts "Sample".gsub!(/[bcd]/, '*')                  
puts "Program".gsub!(/([gmra])/, '<\1>')      

输出:


Po

范例2:

# Ruby program to demonstrate  
# the gsub! method  
       
# Taking a string and  
# using the method 
puts "Ruby".gsub!(/[tyru]/, '<\1>')                  
puts "String".gsub!(/([ab])/, '*')     

输出:

Rb



相关用法


注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String gsub! Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。