I couldn't find any similar question, so I start a new one.
I need to remove all whitespace from string, but quotations should stay as they were. I'm building a personal kind of minifier.
Here's an example:
string to parse:
hola hola "pepsi cola" yay
output:
holahola"pepsi cola"yay
Any idea? I'm sure this can be done with regexp, but any solution is okay.
Martti Laine
hola hola "pepsi \" cola " yaybecomeholahola"pepsi \" cola "yayorhola hola "pepsi \"cola"yay)? – Wrikken Sep 29 '10 at 21:08