Ruby Regexp options()函数

Ruby Regexp options()函数

Regexp#options() : options()是Regexp类的一个方法,用于返回创建正则表达式时使用的选项所对应的位集。

语法。Regexp.options()

参数。Regexp值

返回:与创建正则表达式时使用的选项相对应的比特集。

例子 #1 :

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

输出:

Regexp options form : 0

Regexp options form : 16

Regexp options form : 0

例子 #2 :

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

输出:

Regexp options form : 3

Regexp options form : 0

Regexp options form : 0

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程