Using regex to replace all spaces NOT in quotes in Ruby - Stack Overflow most recent 30 from stackoverflow.com 2009-11-06T12:37:29Z http://stackoverflow.com/feeds/question/205521 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby 1 Using regex to replace all spaces NOT in quotes in Ruby Joe Zack 2008-10-15T16:56:14Z 2008-10-17T08:29:03Z <p>I'm trying to write a regex to replace all spaces that are not included in quotes so something like this:</p> <p>a = 4, b = 2, c = "space here"</p> <p>would return this:</p> <p>a=4,b=2,c="space here"</p> <p>I spent some time searching this site and I found a similar q/a ( <a href="http://stackoverflow.com/questions/79968/split-a-string-by-spaces-in-python#80449">http://stackoverflow.com/questions/79968/split-a-string-by-spaces-in-python#80449</a> ) that would replace all the spaces inside quotes with a token that could be re-substituted in after wiping all the other spaces...but I was hoping there was a cleaner way of doing it.</p> http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby/205581#205581 1 Answer by Romulo A. Ceccon for Using regex to replace all spaces NOT in quotes in Ruby Romulo A. Ceccon 2008-10-15T17:10:40Z 2008-10-15T17:20:35Z <p>I consider this very clean:</p> <pre><code>mystring.scan(/((".*?")|([^ ]))/).map { |x| x[0] }.join </code></pre> <p>I doubt <em>gsub</em> could do any better (assuming you want a pure regex approach).</p> http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby/205862#205862 4 Answer by Borgar for Using regex to replace all spaces NOT in quotes in Ruby Borgar 2008-10-15T18:29:12Z 2008-10-15T18:29:12Z <p>This seems to work:</p> <pre><code>result = string.gsub(/( |(".*?"))/, "\\2") </code></pre> http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby/211024#211024 0 Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in Ruby Senmiao Liu 2008-10-17T03:46:02Z 2008-10-17T03:46:02Z <p>try this one, string in single/double quoter is also matched (so you need to filter them, if you only need space):</p> <pre><code>/( |("([^"\\]|\\.)*")|('([^'\\]|\\.)*'))/ </code></pre> http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby/211063#211063 5 Answer by Daniel Spiewak for Using regex to replace all spaces NOT in quotes in Ruby Daniel Spiewak 2008-10-17T04:18:19Z 2008-10-17T04:18:19Z <p>It's worth noting that <em>any</em> regular expression solution will fail in cases like the following:</p> <pre><code>a = 4, b = 2, c = "space" here" </code></pre> <p>While it is true that you could construct a regexp to handle the three-quote case specifically, you cannot solve the problem in the general sense. This is a mathematically provable limitation of simple <a href="http://en.wikipedia.org/wiki/Deterministic_finite-state_machine" rel="nofollow">DFAs</a>, of which regexps are a direct representation. To perform any serious brace/quote matching, you will need the more powerful <a href="http://en.wikipedia.org/wiki/Pushdown_automaton" rel="nofollow">pushdown automaton</a>, usually in the form of a text parser library (ANTLR, Bison, Parsec).</p> <p>With that said, it sounds like regular expressions should be sufficient for your needs. Just be aware of the limitations.</p> http://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby/211404#211404 0 Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in Ruby Senmiao Liu 2008-10-17T08:29:03Z 2008-10-17T08:29:03Z <p>Daniel,</p> <p>The space between double-quote and 'here' is NOT in quotes in your example.</p>