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).
|
2 | edited the expression so the pattern does not match the characters inside quotes in greedy mode | ||
|
I consider this very clean: |
||||
|
1 |
|
||
|
I consider this very clean:
I doubt gsub could do any better (assuming you want a pure regex approach). |
||||