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


Ruby String gsub用法及代码示例


gsub是Ruby中的String类方法,用于返回给定字符串的副本,其中所有出现的pattern都替换为第二个参数。

用法: str.gsub(pattern, replacement)

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


返回值:字符串的副本,其中所有出现的模式都替换为第二个参数。

示例1:

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

输出:

S**ple
Po

示例2:

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

输出:

Rb
S***n*


相关用法


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