RE: Comma-Space as delimiter

2002-10-07 Thread Bryan Love
You can't. You must use replace() to replace the comma/space with a single character that you can use as the delimiter. The bell character works well since it can't be typed (chr(7)). +---+ Bryan Love Macromedia Certified Professional Internet

Re: Comma-Space as delimiter

2002-10-07 Thread Joseph Thompson
sub-optimal but Replace(String,', ',chr(07),'all') would leave you a bell delimited list... How do I tell it to delimit as comma-space? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Comma-Space as delimiter

2002-10-07 Thread Bruce Holm
Thanks for the help! Bruce Holm -Original Message- From: Joseph Thompson [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 10:58 AM To: CF-Talk Subject: Re: Comma-Space as delimiter sub-optimal but Replace(String,', ',chr(07),'all') would leave you a bell delimited list