[Tex/LaTex] Removing the spaces between words

macrosspacing

Is there any way to remove spaces from in between the words in a text? Something like

\RemoveSpaces{This is   my    sentence.}

which will be converted to

Thisismysentence.

Best Answer

\makeatletter
\def\RemoveSpaces#1{\zap@space#1 \@empty}
\makeatother