RE: convert first letter of words in a string to upper

2002-10-09 Thread Dave Wilson
Check the Tag gallery there's a tag called CF_Capitalize...works well...I have a copy of it if you need it...mail me offlist, its freeware. Dave -Original Message- From: Jared Clinton [mailto:[EMAIL PROTECTED]] Sent: 09 October 2002 00:33 To: CF-Talk Subject: RE: convert first letter of

convert first letter of words in a string to upper

2002-10-08 Thread Chris Edwards
I need a function to convert first letter of words in a string to upper case. -- Chris Edwards Web Application Developer Outer Banks Internet, Inc. 252-441-6698 [EMAIL PROTECTED] http://www.OuterBanksInternet.com ~|

RE: convert first letter of words in a string to upper

2002-10-08 Thread Jared Clinton
Chris, Have a look at www.cflib.org It has heaps of cool things, and I'm quite sure also what you are looking for. Jared Clinton. NEC Australia. -Original Message- From: Chris Edwards [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 9 October 2002 7:32 AM To: CF-Talk Subject: convert first

Re: convert first letter of words in a string to upper

2002-10-08 Thread charlie griefer
#ucase(left(myString, 1))##lcase(right(myString, len(myString)-1))# Chris Edwards writes: I need a function to convert first letter of words in a string to upper case. -- Chris Edwards Web Application Developer Outer Banks Internet, Inc. 252-441-6698 [EMAIL PROTECTED]

Re: convert first letter of words in a string to upper

2002-10-08 Thread S . Isaac Dealey
http://www.cflib.org/udf.cfm?ID=116 Isaac Certified Advanced ColdFusion 5 Developer www.turnkey.to 954-776-0046 I need a function to convert first letter of words in a string to upper case. -- Chris Edwards Web Application Developer Outer Banks Internet, Inc. 252-441-6698 [EMAIL

Re: convert first letter of words in a string to upper

2002-10-08 Thread Jon Hall
http://www.cflib.org/udf.cfm?ID=9 -- jon mailto:[EMAIL PROTECTED] Tuesday, October 8, 2002, 5:31:50 PM, you wrote: CE I need a function to CE convert first letter of words in a string to upper case. ~| Archives:

RE: convert first letter of words in a string to upper

2002-10-08 Thread Everett, Al
To wit: CapFirst: http://www.cflib.org/udf.cfm?ID=9 CapFirstTitle: http://www.cflib.org/udf.cfm?ID=116 -Original Message- From: Jared Clinton To: CF-Talk Sent: 10/8/02 7:32 PM Subject: RE: convert first letter of words in a string to upper Chris, Have a look at www.cflib.org It has