nickcrispini
10-16-2003, 05:23 PM
I want to replace a space character with no space. So if I had two words such as 'Hello World' I would it to be replaced with 'HelloWorld'.
I previous have replaced characters with a simple function:
Function replaceChar(text)
text = Replace(text, "at", "@")
replaceChar = text
End Function
Is this possible.
Thanks.
Nick
I previous have replaced characters with a simple function:
Function replaceChar(text)
text = Replace(text, "at", "@")
replaceChar = text
End Function
Is this possible.
Thanks.
Nick