本文簡要介紹ruby語言中 Regexp.union
的用法。
用法
union(pat1, pat2, ...) → new_regexp
union(pats_ary) → new_regexp
返回一個 Regexp
對象,它是給定 pattern
的並集,即,將匹配其任何部分。 pattern
可以是 Regexp
對象,在這種情況下,它們的選項將被保留,或者是字符串。如果沒有給出模式,則返回 /(?!)/
。如果任何給定的 pattern
包含捕獲,則行為未指定。
Regexp.union #=> /(?!)/
Regexp.union("penzance") #=> /penzance/
Regexp.union("a+b*c") #=> /a\+b\*c/
Regexp.union("skiing", "sledding") #=> /skiing|sledding/
Regexp.union(["skiing", "sledding"]) #=> /skiing|sledding/
Regexp.union(/dogs/, /cats/i) #=> /(?-mix:dogs)|(?i-mx:cats)/
注意: ::union
的參數將嘗試通過to_regexp 轉換為正則表達式文字。
相關用法
- Ruby Regexp.eql?用法及代碼示例
- Ruby Regexp.fixed_encoding?用法及代碼示例
- Ruby Regexp.options用法及代碼示例
- Ruby Regexp.inspect用法及代碼示例
- Ruby Regexp.names用法及代碼示例
- 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.rxp ==用法及代碼示例
- Ruby Regexp.source用法及代碼示例
- Ruby Regexp.new用法及代碼示例
- Ruby Regexp.named_captures用法及代碼示例
- 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.union。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。