Re: List w/" " delims

2000-12-15 Thread pan
> > I don't know why that function works the way that it does, but my guess is > that it's essentially just a type of Replace function. > Here's my small contribution to add to the delimiter mysteries. It's not just a ListChangeDelimters() oddity. Everything here works, but the docs suggest th

RE: List w/" " delims

2000-12-14 Thread Dave Watts
> Dave, if this is the case (which I don't doubt), then why > will this work: > > > > #first_list# > > > > #new_list# > > Granted if you perform a listgetat on the new_list with > delims as ", " eg: > it will only pick up 'kiwi' and not 'kiwi fruit' as it uses > the space as an optional

RE: List w/" " delims

2000-12-12 Thread Rich Wild
AIL PROTECTED]] > Sent: 12 December 2000 20:08 > To: CF-Talk > Subject: RE: List w/" " delims > > > > For the record: > > You can use more than one symbol for a list delimiter if you > > assign it to a variable first: > > > > > > >

RE: List w/" " delims

2000-12-12 Thread Dave Watts
> For the record: > You can use more than one symbol for a list delimiter if you > assign it to a variable first: > > > > Don't ask why, it just works that way This really depends on what you mean by "using more than one symbol for a list delimiter". If you mean that you can use a multi-cha

RE: List w/" " delims

2000-12-08 Thread Bryan Love
For the record: You can use more than one symbol for a list delimiter if you assign it to a variable first: mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 9:38 AM To: CF-Talk Subject: RE: List w/" " delims Maybe the "*" character is throwing it off. Sorry, I mi

RE: List w/" " delims

2000-12-08 Thread Dave Watts
> I use a carraige return and line feed all the time as a > delimiter. Why doesn't that break? When you specify multiple characters within the DELIMITERS attribute, CF uses any one of those as a delimiter, rather than using them together as a single delimiter. Here's an example: #i# If CFL

RE: List w/" " delims

2000-12-08 Thread Jeff Britts
r e-Dialog -Original Message- From: Robyn Follen [mailto:[EMAIL PROTECTED]] Sent: Friday, December 08, 2000 9:58 AM To: CF-Talk Subject: RE: List w/" " delims I've tried to user multiple characters as a list delimiter, but whenever I then try to iterate through the list, sp

RE: List w/" " delims

2000-12-08 Thread Bruce Heerssen
Sure here you go. #theList# Short and sweet. 1. Create the list. Use single quotes to denote the string because the string contains double quotes. 2. Replace all occurrences of '" "' with ','. 3. Replace the remaining double quotes at the beginning and end of the list with nothing. Now you

RE: List w/" " delims

2000-12-08 Thread Robyn Follen
ecember 08, 2000 8:29 AM To: CF-Talk Subject: RE: List w/" " delims You CAN use multiple characters as list delimiters...eg. "|*|". I do it frequently to cut down on the chances that one of my list items contains a delimiter. Jeff Britts ColdFusion Engineer e-Dialog -Ori

RE: List w/" " delims

2000-12-08 Thread Jason Lees (National Express)
CTED]] Sent: 08 December 2000 13:29 To: CF-Talk Subject: RE: List w/" " delims You CAN use multiple characters as list delimiters...eg. "|*|". I do it frequently to cut down on the chances that one of my list items contains a delimiter. Jeff Britts ColdFusion Engineer e-Dialog

RE: List w/" " delims

2000-12-08 Thread Jeff Britts
: Thursday, December 07, 2000 2:21 PM To: CF-Talk Subject: Re: List w/" " delims Keep in mind that list delimiters can only be 1 character. -- Billy Cravens [EMAIL PROTECTED] Eric Fickes wrote: > > Got a List question for you. > > I've got a text file that I need to

RE: List w/" " delims

2000-12-07 Thread Robert Hinojosa
2000 1:21 PM To: CF-Talk Subject: Re: List w/" " delims Keep in mind that list delimiters can only be 1 character. -- Billy Cravens [EMAIL PROTECTED] Eric Fickes wrote: > > Got a List question for you. > > I've got a text file that I need to parse and it's &q

RE: List w/" " delims

2000-12-07 Thread Scott, Andrew
I always use a character that is very less likely to be typed in by the user or in any normal text string like the carrot sign for example (^) Then all you need to do then is do what you need and replace the (^) with (,)... regards Andrew Scott Senior Cold Fusion Application Developer ---

Re: List w/" " delims

2000-12-07 Thread Billy Cravens
Keep in mind that list delimiters can only be 1 character. -- Billy Cravens [EMAIL PROTECTED] Eric Fickes wrote: > > Got a List question for you. > > I've got a text file that I need to parse and it's " delimited list, in a > way. The list format is this. > > "Full Name" "Email Address" "G

Re: List w/" " delims

2000-12-07 Thread Dain Anderson
Eric, You can also use Regular Expression to do this, although my example could likely use some work: Dain Anderson Caretaker, CF Comet http://www.cfcomet.com/ - Original Message - From: "Eric Fickes" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, December 06,

RE: List w/" " delims

2000-12-07 Thread Daniel Lancelot
does this help? #editedlist# HTH Dan. :> -Original Message- :> From: Eric Fickes [mailto:[EMAIL PROTECTED]] :> Sent: 07 December 2000 04:31 :> To: CF-Talk :> Subject: List w/" " delims :> :> :> Got a List question for you. :> :> I've got a text file that I need to parse and it'