當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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