Regexp#options():options()是Regexp類方法,它返回與創建正則表達式時使用的選項相對應的位集。
用法:Regexp.options()
參數:正則表達式值
返回:與創建正則表達式時使用的選項相對應的一組位。
示例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
相關用法
- Scala Regexp ===()用法及代碼示例
- Scala Regexp =~()用法及代碼示例
- Ruby Regexp eql?()用法及代碼示例
- Scala Regexp ==()用法及代碼示例
- Ruby Regexp new()用法及代碼示例
- Ruby Regexp to_s()用法及代碼示例
- Ruby Regexp escape()用法及代碼示例
- Ruby Regexp casefold?()用法及代碼示例
- Ruby Regexp quote()用法及代碼示例
- Ruby Regexp source()用法及代碼示例
- Ruby Regexp names()用法及代碼示例
- Ruby Regexp named_captures()用法及代碼示例
- Ruby Regexp compile()用法及代碼示例
- Ruby Regexp encoding()用法及代碼示例
- Ruby Regexp inspect()用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | Regexp options() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。