Andrej Mitrovic:
> Is there a Phobos function to compress all spaces to just one space in a string?
>
> E.g. " foo bar "
> becomes: " foo bar "
import std.string;
void main() {
assert(" foo bar ".squeeze() == " fo bar ");
}
Bye,
bearophile