fnRemoveSpaces() fnRemoveSpaces(...) DESCRIPTION This function removes spaces, tabs, form feed, carriage returns from a strng SYNTAX fnRemoveSpaces(String) EXAMPLE <%@ Language=VBScript %> <% Response.Buffer = true %> <% '-->-->-->-->-->-->-->-->--> dim aString aString = "yes no" aString = fnRemoveSpaces(aString) Response.Write(aString) '--<--<--<--<--<--<--<--<--< %> RESULTS yesno PARAMETERS STATUS ? DEPENDENCIES LAST MODIFIED 12 April 2000 PROGRAMMER Matthew Bishop (matthew@massive.com.au or matth3wbishop@yahoo.com) LOCATION c:http://www.geocities.com/matth3wbishop/eg/asp/ DOCUMENTATION http://www.geocities.com/matth3wbishop/eg/asp/ COMMENTS: a) small util function b) c)