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