Ruby Regexp quote()函数

Ruby Regexp quote()函数

Regexp#quote() : quote()是一个Regexp类方法,它可以转义任何在正则表达式中具有特殊意义的字符。

语法。Regexp.quote()

参数。Regexp值

返回:转义任何在正则表达式中具有特殊含义的字符。

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程