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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。