RE: CFLOOP problem with commas

2002-04-24 Thread Ryan Kime
haracter delimiters." -Original Message- From: Lon Lentz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:55 PM To: CF-Talk Subject: RE: CFLOOP problem with commas Huh. Okay. I've never experienced a problem with them. Which isn't to say that no one will.

Re: CFLOOP problem with commas

2002-04-23 Thread James Sleeman
> As you can see, the first URL outputs normally, but the second URL > breaks at every comma. Is there a way around this? I don't want to > insert Chr() codes if I can help it! Remember that when picking a delimiter, any character is fair game, you can be pretty much assured that something like t

RE: CFLOOP problem with commas

2002-04-23 Thread Ryan Kime
Tim, Just for reference (concerning the URL Encode/Decode): http://www.foo.com/products/345.html";)> http://www.bar.com/articles/editorials?rfc=435563";)> http://www.foobar.com/cda/4545,4566rc.html?pg=1";)> #URLDecode(ListofUrls)# -Original Message-

RE: CFLOOP problem with commas

2002-04-23 Thread Tim Claremont
Thanks for the help. Ray came through for me for the second time today. Since I *KNOW* that I am looping through URLs, then I *KNOW* that a space is a valid delimiter. I plugged it in and it worked perfectly. Now I can go home on time. Thanks, Ray! _

RE: CFLOOP problem with commas

2002-04-23 Thread Ryan Kime
How about URLEncodedFormat in, URLDecode out? That way, you can keep your comma as the delimiter. Ryan Kime -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:39 PM To: CF-Talk Subject: RE: CFLOOP problem with commas Guys

RE: CFLOOP problem with commas

2002-04-23 Thread Lon Lentz
Huh. Okay. I've never experienced a problem with them. Which isn't to say that no one will. > -Original Message- > From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 23, 2002 4:39 PM > To: CF-Talk > Subject: RE: CFLOOP problem

Re: CFLOOP problem with commas

2002-04-23 Thread Matthew Walker
it's much safer. - Original Message - From: "Raymond Camden" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 8:30 AM Subject: RE: CFLOOP problem with commas > >As you can see, the first URL outputs normally, b

RE: CFLOOP problem with commas

2002-04-23 Thread Raymond Camden
rce, and a powerful ally it is." - Yoda > -Original Message- > From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 23, 2002 4:39 PM > To: CF-Talk > Subject: RE: CFLOOP problem with commas > > > Guys, > > Delimeters that are m

RE: CFLOOP problem with commas

2002-04-23 Thread Mark A. Kruger - CFG
Guys, Delimeters that are more than 1 (or 2?) characters don't always work in my experience. CF kinda just uses 1 character for a delimeter. -mk -Original Message- From: Lon Lentz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:40 PM To: CF-Talk Subject: RE: CFLOOP pr

RE: CFLOOP problem with commas

2002-04-23 Thread Mark A. Kruger - CFG
Tim, I'd just use a different delimeter that cannot exist in a URL - like a space: #ListofUrls# I think I'd scrub the URL first to make sure there is not a space in it. Maybe URLEncode( ) it. -Original Message- From: Tim Claremont [mailto:[EMAIL PR

RE: CFLOOP problem with commas

2002-04-23 Thread Lon Lentz
How are you building your list? You could use a non-URL type character, or a small group of characters, as your delimiter. Something like "~~~" or "|||". > -Original Message- > From: Tim Claremont [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 23, 2002 4:25 PM > To: CF-Talk > Subjec

RE: CFLOOP problem with commas

2002-04-23 Thread Shawn Grover
change your delimiter. that should solve the problem. (it's off the top of my head, so could be a little wrong). Shawn Grover -Original Message- From: Tim Claremont [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 2:25 PM To: CF-Talk Subject: CFLOOP problem with commas I am

RE: CFLOOP problem with commas

2002-04-23 Thread Raymond Camden
>As you can see, the first URL outputs normally, but the second URL >breaks at every comma. Is there a way around this? I don't want to >insert Chr() codes if I can help it! Actually, why not? Normally I don't like this hack because you have to assume your inserted char doesn't exist, but for U