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 : (?.)(? .)(? .)
相关用法
- Ruby Regexp eql?()用法及代码示例
- Ruby Regexp new()用法及代码示例
- Scala Regexp ==()用法及代码示例
- Scala Regexp =~()用法及代码示例
- Scala Regexp ===()用法及代码示例
- Ruby Regexp match()用法及代码示例
- Ruby Regexp inspect()用法及代码示例
- Ruby Regexp hash()用法及代码示例
- Ruby Regexp quote()用法及代码示例
- Ruby Regexp fixed_encoding?()用法及代码示例
- Ruby Regexp encoding()用法及代码示例
- Ruby Regexp casefold?()用法及代码示例
- Ruby Regexp compile()用法及代码示例
- Ruby Regexp options()用法及代码示例
- Ruby Regexp names()用法及代码示例
注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | Regexp source() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。