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 &

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: ht

RE: Comma-Space as delimiter

2002-10-07 Thread Bryan Love
t;Let's Roll" - Todd Beamer, Flight 93 -Original Message- From: Bruce Holm [mailto:[EMAIL PROTECTED]] Sent: Monday, October 07, 2002 10:45 AM To: CF-Talk Subject: Comma-Space as delimiter When working with Lists, I'm finding that you can't specify a delimite

Comma-Space as delimiter

2002-10-07 Thread Bruce Holm
When working with Lists, I'm finding that you can't specify a delimiter of comma-space (", "). CF is treating this as "," OR " ". How do I tell it to delimit as comma-space? The ListAppend function in the Reference states you can use "," & CHR(32) in the delimiter parameter but it doesn't wo