Re: Comma space as list delimiter

2002-06-15 Thread Ewok
Thanks for the elaborate well thought out answer - Original Message - From: Matthew Walker [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 14, 2002 8:30 PM Subject: Re: Comma space as list delimiter Well, no. - Original Message - From: Ewok [EMAIL

Comma space as list delimiter

2002-06-14 Thread Ewok
quick one thats driving me nuts I've got a list of dates seperated by a comma and need to have it seperated by a comma then a space I've tried setting , as the delimiter in my listappend statement with no luck, so i went to the end of the append code then did a replace on the list to try and

RE: Comma space as list delimiter

2002-06-14 Thread Bruce, Rodney S HQISEC/SIGNAL
quick try have you tried , nbsp; havent myself so dont' know if it will work -Original Message- From: Ewok [mailto:[EMAIL PROTECTED]] Sent: Friday, June 14, 2002 3:46 PM To: CF-Talk Subject: Comma space as list delimiter quick one thats driving me nuts I've got a list of dates

Re: Comma space as list delimiter

2002-06-14 Thread Marlon Moyer
On your replace statement, did you make sure to specify ALL as the scope? At 06:46 PM 6/14/2002 -0400, you wrote: quick one thats driving me nuts I've got a list of dates seperated by a comma and need to have it seperated by a comma then a space I've tried setting , as the delimiter in my

Re: Comma space as list delimiter

2002-06-14 Thread Matthew Walker
Just create your list with commas, then use ListChangeDelims - Original Message - From: Ewok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 15, 2002 10:46 AM Subject: Comma space as list delimiter quick one thats driving me nuts I've got a list of dates

Re: Comma space as list delimiter SOLVED

2002-06-14 Thread Ewok
hehe, this is one of those emarrasing moments thanks for humoring me : \ - Original Message - From: Marlon Moyer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 14, 2002 7:14 PM Subject: Re: Comma space as list delimiter On your replace statement, did you make sure

Re: Comma space as list delimiter

2002-06-14 Thread Ewok
yeah ive tried that one too it gives the same output , and ,nbsp; givbe the same results - Original Message - From: Bruce, Rodney S HQISEC/SIGNAL [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 14, 2002 7:10 PM Subject: RE: Comma space as list delimiter quick try

Re: Comma space as list delimiter

2002-06-14 Thread Ewok
PM Subject: Re: Comma space as list delimiter Just create your list with commas, then use ListChangeDelims - Original Message - From: Ewok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 15, 2002 10:46 AM Subject: Comma space as list delimiter quick one

Re: Comma space as list delimiter

2002-06-14 Thread Ewok
wow ur probably asking yourself how that fixed it huh : ) cfset list = replace(list, ,, , , ALL) - Original Message - From: Ewok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, June 14, 2002 8:17 PM Subject: Re: Comma space as list delimiter It's fixed but wouldn;t

Re: Comma space as list delimiter

2002-06-14 Thread Matthew Walker
Well, no. - Original Message - From: Ewok [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, June 15, 2002 12:17 PM Subject: Re: Comma space as list delimiter It's fixed but wouldn;t ListChangeDelims be the same thing as using the comma space as the delimiter to start