I have a string field with embedded spaces that I would like to eliminate the spaces from. The spaces are not always in the same position:<br><br>Example<br><br><b>String input:</b> 723 245 777<br><br><b>I would like to return as:</b> 723245777<br><br>The normal trim function only eliminates leading and trainling spaces as I understand it.<br>Thanks for any help ...