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 : \\\*\?\?\?\?\?\{\}\.
相关用法
- Scala Regexp =~()用法及代码示例
- Scala Regexp ===()用法及代码示例
- Ruby Regexp eql?()用法及代码示例
- Ruby Regexp new()用法及代码示例
- Scala Regexp ==()用法及代码示例
- Ruby Regexp source()用法及代码示例
- Ruby Regexp names()用法及代码示例
- Ruby Regexp quote()用法及代码示例
- Ruby Regexp match()用法及代码示例
- Ruby Regexp compile()用法及代码示例
- Ruby Regexp encoding()用法及代码示例
- Ruby Regexp fixed_encoding?()用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Regexp inspect()用法及代码示例
- Ruby Regexp to_s()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Regexp escape() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。