Regexp#quote():quote()是Regexp类方法,可转义任何在正则表达式中具有特殊含义的字符。
用法:Regexp.quote()
参数:正则表达式值
返回:转义任何在正则表达式中具有特殊含义的字符。
示例1:
# Ruby code for Regexp.quote() method
# declaring Regexp value
reg_a = Regexp.quote('/a/')
# declaring Regexp value
reg_c = Regexp.quote('\*?{}.')
# quote method
puts "Regexp quote form : #{reg_a}\n\n"
puts "Regexp quote form : #{reg_c}\n\n"
输出:
Regexp quote form : /a/ Regexp quote form : \\\*\?\{\}\.
示例2:
# Ruby code for Regexp.quote() method
# declaring Regexp value
reg_a = Regexp.quote('/geeks/')
# declaring Regexp value
reg_b = Regexp.quote('/(?<geeks>.)(?<for>.)(?<geeks>.)/')
# declaring Regexp value
reg_c = Regexp.quote('\*?????{}.')
# quote method
puts "Regexp quote form : #{reg_a}\n\n"
puts "Regexp quote form : #{reg_b}\n\n"
puts "Regexp quote form : #{reg_c}\n\n"
输出:
Regexp quote form : /geeks/ Regexp quote form : /\(\?\.\)\(\? \.\)\(\? \.\)/ Regexp quote form : \\\*\?\?\?\?\?\{\}\.
相关用法
- Scala Regexp =~()用法及代码示例
- Scala Regexp ===()用法及代码示例
- Scala Regexp ==()用法及代码示例
- Ruby Regexp new()用法及代码示例
- Ruby Regexp eql?()用法及代码示例
- Ruby Regexp compile()用法及代码示例
- Ruby Regexp source()用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Regexp fixed_encoding?()用法及代码示例
- Ruby Regexp escape()用法及代码示例
- Ruby Regexp encoding()用法及代码示例
- Ruby Regexp casefold?()用法及代码示例
- Ruby Regexp options()用法及代码示例
- Ruby Regexp match()用法及代码示例
- Ruby Regexp named_captures()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Regexp quote() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。