Regexes and multiple multi-character delimeters - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T08:58:13Zhttp://stackoverflow.com/feeds/question/97435http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters1Regexes and multiple multi-character delimetersRobert J. Walker2008-09-18T21:59:52Z2008-09-19T15:09:28Z
<p>Suppose you have the following string:</p>
<pre><code>white sand, tall waves, warm sun
</code></pre>
<p>It's easy to write a regular expression that will match the delimiters, which the Java String.split() method can use to give you an array containing the tokens "white sand", "tall waves" and "warm sun":</p>
<pre><code>\s*,\s*
</code></pre>
<p>Now say you have this string:</p>
<pre><code>white sand and tall waves and warm sun
</code></pre>
<p>Again, the regex to split the tokens is easy (ensuring you don't get the "and" inside the word "sand"):</p>
<pre><code>\s+and\s+
</code></pre>
<p>Now, consider this string:</p>
<pre><code>white sand, tall waves and warm sun
</code></pre>
<p>Can a regex be written that will match the delimiters correctly, allowing you to split the string into the same tokens as in the previous two cases? Alternatively, can a regex be written that will match the tokens themselves and omit the delimiters? (Any amount of white space on either side of a comma or the word "and" should be considered part of the delimiter.)</p>
<p>Edit: As has been pointed out in the comments, the correct answer should robustly handle delimiters at the beginning or end of the input string. The <em>ideal</em> answer should be able to take a string like ",white sand, tall waves and warm sun and " and provide these exact three tokens:</p>
<pre><code>[ "white sand", "tall waves", "warm sun" ]
</code></pre>
<p>...without extra empty tokens or extra white space at the start or end of any token.</p>
<p>Edit: It's been pointed out that extra empty tokens are unavoidable with String.split(), so that's been removed as a criterion for the "perfect" regex.</p>
<p><hr /></p>
<p>Thanks everyone for your responses! I've tried to make sure I upvoted everyone who contributed a workable regex that wasn't essentially a duplicate. Dan's answer was the most robust (it even handles ",white sand, tall waves,and warm sun and " reasonably, with that odd comma placement after the word "waves"), so I've marked his as the accepted answer. The regex provided by nsayer was a close second.</p>
http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97457#974572Answer by Unkwntech for Regexes and multiple multi-character delimetersUnkwntech2008-09-18T22:02:13Z2008-09-18T22:20:32Z<p>This should catch both 'and' or ','</p>
<pre><code>(?:\sand|,)\s
</code></pre>
http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97458#974581Answer by e-satis for Regexes and multiple multi-character delimeterse-satis2008-09-18T22:02:17Z2008-09-19T06:04:31Z<p>Yes, that's what regexp are for :</p>
<pre><code>\s*(?:and|,)\s*
</code></pre>
<p>The | defines alternatives, the () groups the selectors and the :? ensure the regexp engine won't try to retain the value between the ().</p>
<p>EDIT : to avoid the sand pitfall (thanks for notifying) :</p>
<pre><code>\s*(?:[^s]and|,)\s*
</code></pre>
http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97470#974702Answer by nsayer for Regexes and multiple multi-character delimetersnsayer2008-09-18T22:03:16Z2008-09-18T22:57:47Z<p>The problem with</p>
<pre><code>\s*(,|(and))\s*
</code></pre>
<p>is that it would split up "sand" inappropriately.</p>
<p>The problem with</p>
<pre><code>\s+(,|(and))\s+
</code></pre>
<p>is that it requires spaces around commas.</p>
<p>The right answer probably has to be</p>
<pre><code>(\s*,\s*)|(\s+and\s+)
</code></pre>
<p>I'll cheat a little on the concept of returning the strings surrounded by delimiters by suggesting that lots of languages have a "split" operator that does exactly what you want when the regex specifies the form of the delimiter itself. See the Java String.split() function.</p>
http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97482#974822Answer by Shinhan for Regexes and multiple multi-character delimetersShinhan2008-09-18T22:04:38Z2008-09-18T22:04:38Z<p>Would this work?</p>
<pre><code>\s*(,|\s+and)\s+
</code></pre>
http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97494#974940Answer by Quintin Robinson for Regexes and multiple multi-character delimetersQuintin Robinson2008-09-18T22:06:48Z2008-09-18T22:48:36Z<pre><code>(?:(?<!s)and\s+|\,\s+)
</code></pre>
<p>Might work</p>
<p>Don't have a way to test it, but took out the just space matcher.</p>
http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97632#976325Answer by Dan for Regexes and multiple multi-character delimetersDan2008-09-18T22:25:14Z2008-09-18T22:25:14Z<p>This should be pretty resilient, and handle stuff like delimiters at the end of the string ("foo and bar and ", for example)</p>
<pre><code>\s*(?:\band\b|,)\s*
</code></pre>
http://stackoverflow.com/questions/97435/regexes-and-multiple-multi-character-delimeters/97843#978430Answer by Lucas Oman for Regexes and multiple multi-character delimetersLucas Oman2008-09-18T23:00:50Z2008-09-18T23:00:50Z<p>Maybe:</p>
<p>((\s*,\s*)|(\s+and\s+))</p>
<p>I'm not a java programmer, so I'm not sure if java regex allows '?'</p>