Ruby Regexp source()函数

Ruby Regexp source()函数

Regexp#source() : source()是一个Regexp类方法,它返回模式的原始字符串。

语法。Regexp.source()

参数。Regexp值

返回:模式的原始字符串。

例子 #1 :

# Ruby code for Regexp.source() method
  
# declaring Regexp value
reg_a = /a/
  
# declaring Regexp value
reg_b = /\xa1\xa2/e
  
# declaring Regexp value
reg_c =/(?<go>.)(?<for>.)(?<it>.)/
  
  
#  source method
puts "Regexp source form : #{reg_a.source}\n\n"
  
puts "Regexp source form : #{reg_b.source}\n\n"
  
puts "Regexp source form : #{reg_c.source}\n\n"

输出:

Regexp source form : a

Regexp source form : \xa1\xa2

Regexp source form : (?.)(?.)(?.)

例子 #2 :

# Ruby code for Regexp.source() method
  
# declaring Regexp value
reg_a = /geeks/ix
  
# declaring Regexp value
reg_b = /(?<hi>.)(?<there>.)e/
  
# declaring Regexp value
reg_c = /(?<i>.)(?<can>.)(?<code>.)/
  
  
#  source method
puts "Regexp source form : #{reg_a.source}\n\n"
  
puts "Regexp source form : #{reg_b.source}\n\n"
  
puts "Regexp source form : #{reg_c.source}\n\n"

输出:

Regexp source form : geeks

Regexp source form : (?.)(?.)e

Regexp source form : (? _.)(?.)(?.)


_

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程