當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Regexp.new用法及代碼示例


本文簡要介紹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 不是 nilfalse ,則正則表達式將不區分大小寫。

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-lang.org大神的英文原創作品 Regexp.new。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。