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

link|improve this question

Can double quotes be escaped between quotes, or is that a non-isse (e.g. should hola hola "pepsi \" cola " yay become holahola"pepsi \" cola "yay or hola hola "pepsi \"cola"yay)? – Wrikken Sep 29 '10 at 21:08
feedback

1 Answer

up vote 1 down vote accepted

We could match strings or quotations with

[^\s"]+|"[^"]*"

So we just need to preg_match_all and concatenate the result.


Example:

$str = 'hola hola "pepsi cola" yay';

preg_match_all('/[^\s"]+|"[^"]*"/', $str, $matches);

echo implode('', $matches[0]);
// holahola"pepsi cola"yay
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.