RE: String Manipulation help needed

2002-04-23 Thread Tim Claremont
Thanks Ray, that one did the trick. I won't even tell ya what I was trying to use... -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:21 PM To: CF-Talk Subject: RE: String Manipulation help needed No - that will return "h

RE: String Manipulation help needed

2002-04-23 Thread Matthew R. Small
needed Try this, ListFirst("http://www.foobar.com/images/screwy.gif";, "/") Dave - Original Message - From: "Tim Claremont" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, April 23, 2002 2:59 PM Subject: String Ma

RE: String Manipulation help needed

2002-04-23 Thread Carlisle, Eric
t because ColdFusion doesn't include empty list items in its count. Eric -Original Message- From: Tim Claremont [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 3:00 PM To: CF-Talk Subject: String Manipulation help needed I have the following string: http://www.foobar.com/im

RE: String Manipulation help needed

2002-04-23 Thread Raymond Camden
L PROTECTED] Yahoo IM : morpheus "My ally is the Force, and a powerful ally it is." - Yoda > -Original Message- > From: Dave Hannum [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, April 23, 2002 3:14 PM > To: CF-Talk > Subject: Re: String Manipulation help

RE: String Manipulation help needed

2002-04-23 Thread Ryan Pieszak
CTED]] Sent: Tuesday, April 23, 2002 3:00 PM To: CF-Talk Subject: String Manipulation help needed I have the following string: http://www.foobar.com/images/screwy.gif I want to return everything before the third / In other words, I want to retrieve the following: http://www.foobar.com I am su

Re: String Manipulation help needed

2002-04-23 Thread Dave Hannum
Try this, ListFirst("http://www.foobar.com/images/screwy.gif";, "/") Dave - Original Message - From: "Tim Claremont" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, April 23, 2002 2:59 PM Subject: String Ma

String Manipulation help needed

2002-04-23 Thread Tim Claremont
I have the following string: http://www.foobar.com/images/screwy.gif I want to return everything before the third / In other words, I want to retrieve the following: http://www.foobar.com I am sure there is a simple string function. What am I missing? T