2019-04-16, 03:08 PM
Oh, we're playing code golf now are we :)
PHP Code:
RemoveDoubleSpace(string[], i = 0)
{
while ((i = strfind(string, " ", _, i)) != -1)
strdel(string, i, i 1);
}