本文簡要介紹ruby語言中 Regexp.new
的用法。
用法
new(string, [options]) → regexp
new(regexp) → regexp
compile(string, [options]) → regexp
compile(regexp) → regexp
從 pattern
構造一個新的正則表達式,它可以是 String
或 Regexp
(在這種情況下傳播正則表達式的選項),並且可能不指定新選項(從 Ruby 1.8 開始的更改)。
如果 options
是 Integer
,它應該是常量 Regexp::EXTENDED
、 Regexp::IGNORECASE
和 Regexp::MULTILINE
、 or
中的一個或多個。否則,如果 options
不是 nil
或 false
,則正則表達式將不區分大小寫。
r1 = Regexp.new('^a-z+:\\s+\w+') #=> /^a-z+:\s+\w+/
r2 = Regexp.new('cat', true) #=> /cat/i
r3 = Regexp.new(r2) #=> /cat/i
r4 = Regexp.new('dog', Regexp::EXTENDED | Regexp::IGNORECASE) #=> /dog/ix
相關用法
- Ruby Regexp.names用法及代碼示例
- Ruby Regexp.named_captures用法及代碼示例
- Ruby Regexp.eql?用法及代碼示例
- Ruby Regexp.fixed_encoding?用法及代碼示例
- Ruby Regexp.options用法及代碼示例
- Ruby Regexp.inspect用法及代碼示例
- Ruby Regexp.rxp =~ str用法及代碼示例
- Ruby Regexp.escape用法及代碼示例
- Ruby Regexp.casefold?用法及代碼示例
- Ruby Regexp.match用法及代碼示例
- Ruby Regexp.try_convert用法及代碼示例
- Ruby Regexp.rxp ===用法及代碼示例
- Ruby Regexp.match?用法及代碼示例
- Ruby Regexp.union用法及代碼示例
- Ruby Regexp.rxp ==用法及代碼示例
- Ruby Regexp.source用法及代碼示例
- Ruby Regexp.~ rxp用法及代碼示例
- Ruby Regexp.last_match用法及代碼示例
- Ruby Regexp.to_s用法及代碼示例
- Ruby Regexp named_captures()用法及代碼示例
- Ruby Regexp to_s()用法及代碼示例
- Ruby Regexp hash()用法及代碼示例
- Ruby Regexp類用法及代碼示例
- Ruby Regexp inspect()用法及代碼示例
- Ruby Regexp source()用法及代碼示例
注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Regexp.new。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。