Regex for splitting a string using space when not surrounded by single or double quotes - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T14:12:21Z http://stackoverflow.com/feeds/question/366202 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double 3 Regex for splitting a string using space when not surrounded by single or double quotes carlsz 2008-12-14T05:18:30Z 2008-12-17T14:22:51Z <p>Hello all. I'm new to regular expressions and would appreciate your help. I'm trying to put together an expression that will split the example string using all spaces that are not surrounded by single or double quotes. My last attempt looks like this: <code> (?!")</code> and isn't quite working. It's splitting on the space before the quote.</p> <p>Example input: </p> <p>This is a string that "will be" highlighted when your 'regular expression' matches something.</p> <p>Desired output:</p> <p>This<br/> is<br/> a<br/> string<br/> that<br/> will be<br/> highlighted<br/> when<br/> your<br/> regular expression<br/> matches<br/> something.<br/></p> <p>Note that "will be" and 'regular expression' retain the space between the words.</p> <p>TIA,<br/> Carl</p> http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double/366216#366216 0 Answer by Jonathan Lonowski for Regex for splitting a string using space when not surrounded by single or double quotes Jonathan Lonowski 2008-12-14T06:02:47Z 2008-12-14T06:08:09Z <p>It'll probably be easier to search the string, grabbing each part, vs. split it.</p> <p>Reason being, you can have it split at the spaces before and after <code>"will be"</code>. But, I can't think of any way to specify ignoring the space between inside a split.</p> <p><em>(not actual Java)</em></p> <pre><code>string = "This is a string that \"will be\" highlighted when your 'regular expression' matches something."; regex = "\"(\\\"|(?!\\\").)+\"|[^ ]+"; // search for a quoted or non-spaced group final = new Array(); while (string.length &gt; 0) { string = string.trim(); if (Regex(regex).test(string)) { final.push(Regex(regex).match(string)[0]); string = string.replace(regex, ""); // progress to next "word" } } </code></pre> <p><hr /></p> <p>Also, capturing single quotes could lead to issues:</p> <pre><code>"Foo's Bar 'n Grill" //=&gt; "Foo" "s Bar " "n" "Grill" </code></pre> http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double/366222#366222 0 Answer by Zach Scrivena for Regex for splitting a string using space when not surrounded by single or double quotes Zach Scrivena 2008-12-14T06:16:35Z 2008-12-14T06:54:48Z <p><code>String.split()</code> is not helpful here because there is no way to distinguish between spaces within quotes (don't split) and those outside (split). <code>Matcher.lookingAt()</code> is probably what you need:</p> <pre><code>String str = "This is a string that \"will be\" highlighted when your 'regular expression' matches something."; str = str + " "; // add trailing space int len = str.length(); Matcher m = Pattern.compile("((\"[^\"]+?\")|('[^']+?')|([^\\s]+?))\\s++").matcher(str); for (int i = 0; i &lt; len; i++) { m.region(i, len); if (m.lookingAt()) { String s = m.group(1); if ((s.startsWith("\"") &amp;&amp; s.endsWith("\"")) || (s.startsWith("'") &amp;&amp; s.endsWith("'"))) { s = s.substring(1, s.length() - 1); } System.out.println(i + ": \"" + s + "\""); i += (m.group(0).length() - 1); } } </code></pre> <p>which produces the following output:</p> <pre><code>0: "This" 5: "is" 8: "a" 10: "string" 17: "that" 22: "will be" 32: "highlighted" 44: "when" 49: "your" 54: "regular expression" 75: "matches" 83: "something." </code></pre> http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double/366227#366227 -3 Answer by rmeador for Regex for splitting a string using space when not surrounded by single or double quotes rmeador 2008-12-14T06:31:27Z 2008-12-14T06:31:27Z <p>I'm reasonably certain this is not possible using regular expressions alone. Checking whether something is contained inside some other tag is a parsing operation. This seems like the same problem as trying to parse XML with a regex -- it can't be done correctly. You may be able to get your desired outcome by repeatedly applying a non-greedy, non-global regex that matches the quoted strings, then once you can't find anything else, split it at the spaces... that has a number of problems, including keeping track of the original order of all the substrings. Your best bet is to just write a really simple function that iterates over the string and pulls out the tokens you want.</p> http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double/366229#366229 1 Answer by Jay for Regex for splitting a string using space when not surrounded by single or double quotes Jay 2008-12-14T06:34:05Z 2008-12-14T07:44:30Z <p>There are several questions on StackOverflow that cover this same question in various contexts using regular expressions. For instance: </p> <ul> <li><a href="http://stackoverflow.com/questions/64904/">parsings strings: extracting words and phrases</a></li> <li><a href="http://stackoverflow.com/questions/54866/">Best way to parse Space Separated Text</a></li> </ul> <p><strong>UPDATE</strong>: Sample regex to handle single and double quoted strings. Ref: <a href="http://www.perlmonks.org/?node_id=29461" rel="nofollow">How can I split on a string except when inside quotes?</a></p> <pre><code>m/('.*?'|".*?"|\S+)/g </code></pre> <p>Tested this with a quick Perl snippet and the output was as reproduced below. Also works for empty strings or whitespace-only strings if they are between quotes (not sure if that's desired or not). </p> <pre><code>This is a string that "will be" highlighted when your 'regular expression' matches something. </code></pre> <p>Note that this does include the quote characters themselves in the matched values, though you can remove that with a string replace, or modify the regex to not include them. I'll leave that as an exercise for the reader or another poster for now, as 2am is way too late to be messing with regular expressions anymore ;)</p> http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double/366239#366239 0 Answer by mcrumley for Regex for splitting a string using space when not surrounded by single or double quotes mcrumley 2008-12-14T06:45:11Z 2008-12-14T06:57:40Z <p>If you want to allow escaped quotes inside the string, you can use something like this:</p> <pre><code>(?:(['"])(.*?)(?&lt;!\\)(?&gt;\\\\)*\1|([^\s]+)) </code></pre> <p>Quoted strings will be group 2, single unquoted words will be group 3.</p> <p>You can try it on various strings here: <a href="http://www.fileformat.info/tool/regex.htm" rel="nofollow">http://www.fileformat.info/tool/regex.htm</a> or <a href="http://gskinner.com/RegExr/" rel="nofollow">http://gskinner.com/RegExr/</a></p> http://stackoverflow.com/questions/366202/regex-for-splitting-a-string-using-space-when-not-surrounded-by-single-or-double/366532#366532 7 Answer by Jan Goyvaerts for Regex for splitting a string using space when not surrounded by single or double quotes Jan Goyvaerts 2008-12-14T13:07:29Z 2008-12-17T14:22:51Z <p>I don't understand why all the others are proposing such complex regular expressions or such long code. Essentially, you want to grab two kinds of things from your string: sequences of characters that aren't spaces or quotes, and sequences of characters that begin and end with a quote, with no quotes in between, for two kinds of quotes. You can easily match those things with this regular expression:</p> <pre><code>[^\s"']+|"([^"]*)"|'([^']*)' </code></pre> <p>I added the capturing groups because you don't want the quotes in the list.</p> <p>This Java code builds the list, adding the capturing group if it matched to exclude the quotes, and adding the overall regex match if the capturing group didn't match (an unquoted word was matched).</p> <pre><code>List&lt;String&gt; matchList = new ArrayList&lt;String&gt;(); Pattern regex = Pattern.compile("[^\\s\"']+|\"([^\"]*)\"|'([^']*)'"); Matcher regexMatcher = regex.matcher(subjectString); while (regexMatcher.find()) { if (regexMatcher.group(1)) { // Add double-quoted string without the quotes matchList.add(regexMatcher.group(1)); } else if (regexMatcher.group(2)) { // Add single-quoted string without the quotes matchList.add(regexMatcher.group(2)); } else { // Add unquoted word matchList.add(regexMatcher.group()); } } </code></pre> <p>If you don't mind having the quotes in the returned list, you can use much simpler code:</p> <pre><code>List&lt;String&gt; matchList = new ArrayList&lt;String&gt;(); Pattern regex = Pattern.compile("[^\\s\"']+|\"[^\"]*\"|'[^']*'"); Matcher regexMatcher = regex.matcher(subjectString); while (regexMatcher.find()) { matchList.add(regexMatcher.group()); } </code></pre>