Regex to detect one of several strings - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T00:48:51Z http://stackoverflow.com/feeds/question/632244 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings 4 Regex to detect one of several strings Craig Walker 2009-03-10T20:57:38Z 2009-04-03T21:48:01Z <p>I've got a list of email addresses belonging to several domains. I'd like a regex that will match addresses belonging to three specific domains (for this example: foo, bar, &amp; baz)</p> <p>So these would match:</p> <ol> <li>a@foo</li> <li>a@bar</li> <li>b@baz</li> </ol> <p>This would not:</p> <ol> <li>a@fnord</li> </ol> <p>Ideally, these would not match either (though it's not critical for this particular problem):</p> <ol> <li>a@foobar</li> <li>b@foofoo</li> </ol> <p>Abstracting the problem a bit: I want to match a string that contains at least one of a given list of substrings.</p> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings/632248#632248 11 Answer by Jason Cohen for Regex to detect one of several strings Jason Cohen 2009-03-10T21:00:04Z 2009-03-11T04:39:39Z <p>Use the pipe symbol to indicate "or":</p> <pre><code>/a@(foo|bar|baz)\b/ </code></pre> <p>If you don't want the capture-group, use the non-capturing grouping symbol:</p> <pre><code>/a@(?:foo|bar|baz)\b/ </code></pre> <p>(Of course I'm assuming "<code>a</code>" is OK for the front of the email address! You should replace that with a suitable regex.)</p> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings/632256#632256 2 Answer by sfossen for Regex to detect one of several strings sfossen 2009-03-10T21:01:59Z 2009-03-10T22:03:28Z <p>should be more generic, the a shouldn't count, although the @ should.</p> <pre><code>/@(foo|bar|baz)(?:\W|$)/ </code></pre> <p><a href="http://en.wikipedia.org/wiki/Regular%5Fexpression" rel="nofollow">Here</a> is a good reference on regex.</p> <p>edit: change ending to allow end of pattern or word break. now assuming foo/bar/baz are full domain names.</p> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings/632257#632257 5 Answer by Gregory A Beamer for Regex to detect one of several strings Gregory A Beamer 2009-03-10T21:02:05Z 2009-03-10T21:02:05Z <p>^(a|b)@(foo|bar|baz)$ if you have this strongly defined a list. The start and end character will only search for those three strings. </p> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings/632291#632291 2 Answer by Alnitak for Regex to detect one of several strings Alnitak 2009-03-10T21:10:42Z 2009-03-10T21:24:55Z <p>Use:</p> <pre><code>/@(foo|bar|baz)\.?$/i </code></pre> <p>Note the differences from other answers:</p> <ul> <li><code>\.?</code> - matching 0 or 1 dots, in case the domains in the e-mail address are "fully qualified"</li> <li><code>$</code> - to indicate that the string <em>must</em> end with this sequence,</li> <li><code>/i</code> - to make the test case insensitive.</li> </ul> <p>Note, this assumes that each e-mail address is on a line on its own.</p> <p>If the string being matched could be anywhere in the string, then drop the <code>$</code>, and replace it with <code>\s+</code> (which matches one or more white space characters)</p> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings/632492#632492 1 Answer by siukurnin for Regex to detect one of several strings siukurnin 2009-03-10T22:15:37Z 2009-03-10T22:15:37Z <p>If the previous (and logical) answers about '|' don't suit you, have a look at </p> <p><a href="http://search.cpan.org/~jhi/Regex-PreSuf-1.17/PreSuf.pm" rel="nofollow">http://search.cpan.org/~jhi/Regex-PreSuf-1.17/PreSuf.pm</a></p> <p>module description : create regular expressions from word lists</p> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings/632497#632497 0 Answer by J.F. Sebastian for Regex to detect one of several strings J.F. Sebastian 2009-03-10T22:16:22Z 2009-03-10T23:00:10Z <p>You don't need a regex to find whether a string contains at least one of a given list of substrings. In Python:</p> <pre><code>def contain(string_, substrings): return any(s in string_ for s in substrings) </code></pre> <p>The above is slow for a large <code>string_</code> and many substrings. <a href="http://directory.fsf.org/project/grep/" rel="nofollow">GNU fgrep</a> can efficiently search for multiple patterns at the same time.</p> <h3>Using regex</h3> <pre><code>import re def contain(string_, substrings): regex = '|'.join("(?:%s)" % re.escape(s) for s in substrings) return re.search(regex, string_) is not None </code></pre> <h3>Related</h3> <ul> <li><a href="http://www.iaeng.org/IJCS/issues%5Fv34/issue%5F2/IJCS%5F34%5F2%5F03.pdf" rel="nofollow">Multiple Skip Multiple Pattern Matching Algorithm (MSMPMA)</a> [pdf] </li> </ul> http://stackoverflow.com/questions/632244/regex-to-detect-one-of-several-strings/632511#632511 0 Answer by Harry for Regex to detect one of several strings Harry 2009-03-10T22:20:40Z 2009-03-10T22:20:40Z <p>Ok I know you asked for a regex answer. But have you considered just splitting the string with the '@' char taking the second array value (the domain) and doing a simple match test</p> <pre><code>if (splitString[1] == "foo" &amp;&amp; splitString[1] == "bar" &amp;&amp; splitString[1] == "baz") { //Do Something! } </code></pre> <p>Seems to me that RegEx is overkill. Of course my assumption is that your case is really as simple as you have listed.</p>