Re: CF substring?

2006-08-01 Thread Tom Donovan
is there any substring function for CF? http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0463.htm#1104504 FindNoCase Mean people suck. ~|

Re: CF substring?

2006-08-01 Thread Mingo Hagen
Yeah they do, but substring wouldn't that be mid()? Tom Donovan wrote: is there any substring function for CF? http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0463.htm#1104504 FindNoCase Mean people

Re: CF substring?

2006-08-01 Thread Dave Carabetta
On 8/1/06, Tom Donovan [EMAIL PROTECTED] wrote: is there any substring function for CF? http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0463.htm#1104504 FindNoCase Actually, it's the mid() function.

Re: CF substring?

2006-08-01 Thread Charlie Griefer
isn't this thread like 5 1/2 years old? :) On 8/1/06, Dave Carabetta [EMAIL PROTECTED] wrote: On 8/1/06, Tom Donovan [EMAIL PROTECTED] wrote: is there any substring function for CF?

RE: CF substring?

2006-08-01 Thread Ben Nadel
And don't forget about Left() and Right() if you want a substring at the ends of a string. ... Ben Nadel www.bennadel.com -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 01, 2006 10:56 AM To: CF-Talk Subject: Re: CF substring

RE: CF substring?

2006-08-01 Thread Snake
FindNoCase() will find a sub-string inside a string. Mid() will extract whatever is from/to the specified positions in the string. -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: 01 August 2006 15:56 To: CF-Talk Subject: Re: CF substring? On 8/1/06, Tom

RE: CF substring?

2001-03-09 Thread Philip Arnold - ASP
is there any substring function for CF? 1) Open CF Documentation 2) Click on "Functions" 3) Click on "String Functions" 4) Look down list Total time taken - less than 30 seconds Alternatively 1) Send email to CF-Talk 2) Wait 5 minutes for response 3) Not learn how to lookup functions To be

Re: CF substring?

2001-03-09 Thread Jim McAtee
ay, March 09, 2001 2:41 AM Subject: RE: CF substring? is there any substring function for CF? 1) Open CF Documentation 2) Click on "Functions" 3) Click on "String Functions" 4) Look down list Total time taken - less than 30 seconds Alternatively 1) Send email to CF

RE: CF substring?

2001-03-09 Thread Philip Arnold - ASP
Who says he's a professional developer, or that anyone even pays him to write code? Damned glad to see you'd know how to handle the situation, though. It's still easier to look into documentation for something that simple than to ask a list which can take 5-10 minutes (at a minimum to

RE: CF substring?

2001-03-09 Thread James Maltby
CF-Talk Subject: RE: CF substring? Who says he's a professional developer, or that anyone even pays him to write code? Damned glad to see you'd know how to handle the situation, though. It's still easier to look into documentation for something that simple than to ask a list which c

RE: CF substring?

2001-03-09 Thread Andy Ewings
questions is entering a whole world of pain.but good luck to you! Andy -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: 09 March 2001 10:39 To: CF-Talk Subject: RE: CF substring? Who says he's a professional developer, or that anyone even pays him

RE: CF substring?

2001-03-09 Thread Philip Arnold - ASP
I agree..it's much better to find out for yourself by looking in books/ help files, etcif you have no joy then ask fellow developers. True - people learn by doing things themselves - anyone who learns by parrot fashion just isn't learning (IMO)... I think that we may be being a

RE: CF substring?

2001-03-09 Thread Jeffry Houser
By the same token, I once worked for a company where the director (manager, whatever I forget his exact title) of the web development department wanted to get rid of someone who wouldn't ask questions. He'd easily spend 6-8 hours on a problem without making any progress or headway. I

RE: CF substring?

2001-03-09 Thread Jeffry Houser
! Andy -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: 09 March 2001 10:39 To: CF-Talk Subject: RE: CF substring? Who says he's a professional developer, or that anyone even pays him to write code? Damned glad to see you'd know how to handle the situation

RE: CF substring?

2001-03-09 Thread Philip Arnold - ASP
By the same token, I once worked for a company where the director (manager, whatever I forget his exact title) of the web development department wanted to get rid of someone who wouldn't ask questions. He'd easily spend 6-8 hours on a problem without making any progress or headway. I

RE: CF substring?

2001-03-09 Thread Philip Arnold - ASP
I see where your coming from. I suppose (if the person worked for me) it would have to depend on this persons skillset, and what type of questions they were asking (or not asking). My complaint was on the level of the question - it takes 30 seconds to look-up the question that was

CF substring?

2001-03-08 Thread Mak Wing Lok
is there any substring function for CF? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: CF substring?

2001-03-08 Thread JAIME HOI
yes ...function MID -Original Message- From: Mak Wing Lok [mailto:[EMAIL PROTECTED]] Sent: Friday, March 09, 2001 10:44 AM To: CF-Talk Subject: CF substring? is there any substring function for CF? ~~ Structure your ColdFusion code

Re: CF substring?

2001-03-08 Thread David E. Crawford
left(), right(), mid() are available for CF. Mid() performs a similar function as substring(). DC - Original Message - From: "Mak Wing Lok" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, March 08, 2001 21:43 Subject: CF substring? is there an