> I need a form field that accepts the data, but removes all appearances of
> spaces from the field in case a user enters any.

You can use the trim function to remove spaces at the beginning or end of a
string...
Trim(Var)

If you want to remove spaces that exist in the middle of a string as well, I
would use the replace function...
Replace("This is a test", " ", "", "ALL")

HTH,
Steve

------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to