in reply to Re: Multiple Match (Sort of AND)
in thread Multiple Match (Sort of AND)
doesn't match, but$_ = "foof"; /(foo.*oof)|(oof.*foo)/;
does.$_ = "foof"; /foo/ and /oof/
Note also that using multiple regexes cannot always be done. Think functions taking regexes are argument (split!), or patterns stored in configuration files.
|
|---|