Using regex to replace all spaces NOT in quotes in Ruby - Stack Overflow most recent 30 from stackoverflow.com2009-11-06T12:37:29Zhttp://stackoverflow.com/feeds/question/205521http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/205521/using-regex-to-replace-all-spaces-not-in-quotes-in-ruby1Using regex to replace all spaces NOT in quotes in RubyJoe Zack2008-10-15T16:56:14Z2008-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#2055811Answer by Romulo A. Ceccon for Using regex to replace all spaces NOT in quotes in RubyRomulo A. Ceccon2008-10-15T17:10:40Z2008-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#2058624Answer by Borgar for Using regex to replace all spaces NOT in quotes in RubyBorgar2008-10-15T18:29:12Z2008-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#2110240Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in RubySenmiao Liu2008-10-17T03:46:02Z2008-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#2110635Answer by Daniel Spiewak for Using regex to replace all spaces NOT in quotes in RubyDaniel Spiewak2008-10-17T04:18:19Z2008-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#2114040Answer by Senmiao Liu for Using regex to replace all spaces NOT in quotes in RubySenmiao Liu2008-10-17T08:29:03Z2008-10-17T08:29:03Z<p>Daniel,</p>
<p>The space between double-quote and 'here' is NOT in quotes in your example.</p>