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


Ruby Regexp escape()用法及代码示例


Regexp#escape():escape()是Regexp类方法,它通过转义正则表达式中具有特殊含义的任何字符来返回新字符串。

用法:Regexp.escape()

参数:正则表达式值


返回:通过转义在正则表达式中具有特殊含义的任何字符来换成新字符串。

示例1:

# Ruby code for Regexp.escape() method 
   
# declaring Regexp value 
reg_a = Regexp.escape('/a/') 
   
   
# declaring Regexp value 
reg_c = Regexp.escape('\*?{}.') 
   
   
#  escape method 
puts "Regexp escape form : #{reg_a}\n\n"
   
puts "Regexp escape form : #{reg_c}\n\n"

输出:

Regexp escape form : /a/

Regexp escape form : \\\*\?\{\}\.

示例2:

# Ruby code for Regexp.escape() method 
  
# declaring Regexp value 
reg_a = Regexp.escape('/geeks/') 
  
# declaring Regexp value 
reg_b = Regexp.escape('/(?<geeks>.)(?<for>.)(?<geeks>.)/') 
  
# declaring Regexp value 
reg_c = Regexp.escape('\*?????{}.') 
  
  
#  escape method 
puts "Regexp escape form : #{reg_a}\n\n"
  
puts "Regexp escape form : #{reg_b}\n\n"
  
puts "Regexp escape form : #{reg_c}\n\n"

输出:

Regexp escape form : /geeks/

Regexp escape form : /\(\?\.\)\(\?\.\)\(\?\.\)/

Regexp escape form : \\\*\?\?\?\?\?\{\}\.



相关用法


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