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


Ruby Regexp.union用法及代碼示例


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