Ruby Regexp escape()函数

Ruby Regexp escape()函数

Regexp#escape() : escape()是一个Regexp类方法,它通过转义任何在正则表达式中具有特殊意义的字符来返回一个新字符串。

语法。Regexp.escape()

参数。Regexp值

返回:通过转义任何在正则表达式中具有特殊含义的字符,返回一个新的字符串。

例子 #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 : \\\*\?\?\?\?\?\{\}\.

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程