Compress spaces to one space

Andrej Mitrovic andrej.mitrovich at gmail.com
Tue Feb 21 05:18:28 PST 2012


Oh cool, it even takes an optional parameter. Thanks!

On 2/21/12, bearophile <bearophileHUGS at lycos.com> wrote:
> 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
>


More information about the Digitalmars-d-learn mailing list