当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby Regexp source()用法及代码示例


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

用法:Regexp.source()

参数:正则表达式值


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

示例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 : (?.)(?.)(?.)




相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Regexp source() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。