show/hide this revision's text 2 edited the expression so the pattern does not match the characters inside quotes in greedy mode

I consider this very clean:

mystring.scan(/((".*")|([^ 

mystring.scan(/((".*?")|([^ ]))/).map { |x| x[0] }.join

I doubt gsub could do any better (assuming you want a pure regex approach).

show/hide this revision's text 1

I consider this very clean:

mystring.scan(/((".*")|([^ ]))/).map { |x| x[0] }.join

I doubt gsub could do any better (assuming you want a pure regex approach).