Re: Capitalize

2011-07-02 Thread John M Bliss
Isn't uppercase text already capitalized? On Sat, Jul 2, 2011 at 7:39 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: I'm looking for a udf to capitalize uppercase text. There seem to be a few that does the same as a CSS text-transform, but I can't find one for text which is all

Re: Capitalize

2011-07-02 Thread Claude Schnéegans
I'm looking for a udf to capitalize uppercase text. What do you actually mean by Capitalize? - Having only the first character upper case in a word; - Having the whole word in small capitals; ~| Order the Adobe Coldfusion

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
Capitalized is a leading cap, like: This Is Capitalized. -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: 02 July 2011 13:49 To: cf-talk Subject: Re: Capitalize Isn't uppercase text already capitalized? On Sat, Jul 2, 2011 at 7:39 AM, Jenny Gavin-Wear jenn

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
The first character in each word in caps, the rest lower case. -Original Message- From: Claude Schnéegans schneeg...@internetique.com [mailto:=?ISO-8859-1?Q?Claude_Schn=E9egans schneegans@interneti=71?= =?ISO-8859-1?Q?ue.com=3E?=] Sent: 02 July 2011 13:58 To: cf-talk Subject: Re

Re: Capitalize

2011-07-02 Thread Raymond Camden
...@gmail.com] Sent: 02 July 2011 13:49 To: cf-talk Subject: Re: Capitalize Isn't uppercase text already capitalized? On Sat, Jul 2, 2011 at 7:39 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: I'm looking for a udf to capitalize uppercase text.  There seem to be a few that does the same

Re: Capitalize

2011-07-02 Thread John M Bliss
: Capitalized is a leading cap, like: This Is Capitalized. -Original Message- From: John M Bliss [mailto:bliss.j...@gmail.com] Sent: 02 July 2011 13:49 To: cf-talk Subject: Re: Capitalize Isn't uppercase text already capitalized? On Sat, Jul 2, 2011 at 7:39 AM, Jenny Gavin-Wear

RE: Capitalize

2011-07-02 Thread Bobby Hartsfield
Actually, that is title case. .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] Sent: Saturday, July 02, 2011 9:09 AM To: cf-talk Subject: RE: Capitalize Capitalized

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
Hi Ray, Thanks for your reply... Silly of me, I didn't think to lcase() the string first. Jenny -Original Message- From: Raymond Camden [mailto:raymondcam...@gmail.com] Sent: 02 July 2011 14:11 To: cf-talk Subject: Re: Capitalize Did you check CFLIb? I think there are about 200

RE: Capitalize

2011-07-02 Thread Bobby Hartsfield
: Capitalize Actually, that is title case. .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original Message- From: Jenny Gavin-Wear [mailto:jenn...@fasttrackonline.co.uk] Sent: Saturday, July 02, 2011 9:09 AM To: cf-talk Subject: RE: Capitalize

RE: Capitalize

2011-07-02 Thread Bobby Hartsfield
- From: Bobby Hartsfield [mailto:bo...@acoderslife.com] Sent: Saturday, July 02, 2011 11:22 AM To: cf-talk Subject: RE: Capitalize cfset str = rereplace(lcase(str), '([a-z]+)', '\u\1\2', all) / .:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com http://cf4em.com -Original

Re: Capitalize

2011-07-02 Thread Jake Churchill
Do lcase() on the text in CF, then use text-transform:capitalize in css. - Sent from my Droid On Jul 2, 2011 7:40 AM, Jenny Gavin-Wear jenn...@fasttrackonline.co.uk wrote: I'm looking for a udf to capitalize uppercase text. There seem to be a few that does the same as a CSS text-transform,

RE: Capitalize

2011-07-02 Thread Jenny Gavin-Wear
thanks for the replies, everyone :) Bobby, nice regex ... I really need to learn it ... thank you. -Original Message- From: Jake Churchill [mailto:reyna...@gmail.com] Sent: 02 July 2011 16:37 To: cf-talk Subject: Re: Capitalize Do lcase() on the text in CF, then use text

RE: capitalize first letter

2002-07-17 Thread Mark A. Kruger - CFG
Keith, There's a tag called Cf_capitalize in the gallery that can do this... I would take it and convert it to a UDF. There's probably already a UDF to do this and other case conversions. Mark -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17,

Re: capitalize first letter

2002-07-17 Thread William H. Bowen
#UCase(Left(variable, 1))# should work will William H. Bowen Webmaster ALSTOM's TD Energy Automation Information Business Your friendly neighborhood Webmaster [EMAIL PROTECTED] http://www.esca.com/ 425.739.3629 Voice 425.466.7016 Cell 425.739.3690 FAX - Original Message - From:

RE: capitalize first letter

2002-07-17 Thread Jim Vosika
Someone made a tag called CF_ProperCase that should be what you are looking for: http://tinyclick.com/?08q2jd HTH, Jim Vosika -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 2:31 PM To: CF-Talk Subject: capitalize first letter Hi

Re: capitalize first letter

2002-07-17 Thread S . Isaac Dealey
Hi everyone. I would like to capitalize the first letter of variable every time it is displayed. What is the easiest way to do this? Thanks very much. The first letter of the contents of a variable, or the first letter of each word within the contents of a variable? ... I usually wind up

Re: capitalize first letter

2002-07-17 Thread Thane Sherrington
At 03:31 PM 7/17/02 -0400, Wurst, Keith D. wrote: Hi everyone. I would like to capitalize the first letter of variable every time it is displayed. What is the easiest way to do this? Thanks very much. http://www.teratech.com/coldcuts/cutdetail.cfm?cutid=109 T

RE: capitalize first letter

2002-07-17 Thread Jim Vosika
Someone made a tag called CF_ProperCase that should be what you are looking for: http://tinyclick.com/?08q2jd HTH, Jim Vosika -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 2:31 PM To: CF-Talk Subject: capitalize first letter Hi

RE: capitalize first letter

2002-07-17 Thread Matthew Friedman
there is a UDF on cflib that does this nicely. matt -Original Message- From: Jim Vosika [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 3:51 PM To: CF-Talk Subject: RE: capitalize first letter Someone made a tag called CF_ProperCase that should be what you are looking

Re: capitalize first letter

2002-07-17 Thread Douglas Brown
Here is the capFirstTitle UDF. Just copy and paste it. CFSCRIPT /** * Returns a string with words capitalized for a title. * Modified by Ray Camden to include var statements. * * @param initText String to be modified. * @return Returns a string. * @author Ed Hodder ([EMAIL PROTECTED])

RE: capitalize first letter

2002-07-17 Thread Joe Eugene
PROTECTED]] Sent: Wednesday, July 17, 2002 4:48 PM To: CF-Talk Subject: Re: capitalize first letter Here is the capFirstTitle UDF. Just copy and paste it. CFSCRIPT /** * Returns a string with words capitalized for a title. * Modified by Ray Camden to include var statements. * * @param

RE: Capitalize first characters

2001-09-13 Thread Kelly Matthews
there are custom tags on allaire's website that can do this go check out the developers section. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 1:21 PM To: CF-Talk Subject: Capitalize first characters Hi all, I'm just starting

RE: Capitalize first characters

2001-09-13 Thread Baskin, Dave
There's an example in an article that discusses User Defined Functions that does just what you want. You can find the article at http://www.sys-con.com/coldfusion/articleprint.cfm?id=270. HTH. d -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday,

RE: Capitalize first characters

2001-09-13 Thread Adkins, Randy
cfset newname = #Ucase(left(old_name,1))# #mid(old_name,2,len(old_name)-1)# -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 1:21 PM To: CF-Talk Subject: Capitalize first characters Hi all, I'm just starting to learn coldfusion

RE: Capitalize first characters

2001-09-13 Thread Alex Santantonio
#UCase(Left(word, 1))##Right(word, Len(word) - 1)# - this will capitalize the first letter and leave the rest the same. Add an LCase() around the second CF Variable to lower case those letters. Alex Santantonio Lead Developer Macromedia Coldfusion 5 Certified Professional Macromedia Certified

RE: Capitalize first characters

2001-09-13 Thread Ronald-Thomas
Check here... they have some nifty functions that should help you get started http://www.cflib.org/library.cfm?ID=1 ronald-thomas w: wildminds.net c: 512.426.4233 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 12:21 PM

Re: Capitalize first characters

2001-09-13 Thread Don Vawter
You can easily do this using a style tag: style .cap{ text-transform : capitalize; } /style and then use span class=capblah blah/span Don Vawter www.cyberroomies.com [EMAIL PROTECTED] - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday,

RE: Capitalize first characters

2001-09-13 Thread Joshua Miller
-Talk Subject: RE: Capitalize first characters There's an example in an article that discusses User Defined Functions that does just what you want. You can find the article at http://www.sys-con.com/coldfusion/articleprint.cfm?id=270. HTH. d -Original Message- From: [EMAIL PROTECTED

RE: Capitalize first characters

2001-09-13 Thread thanh . nguyen
Thanks all. I got it. :) -Original Message- From: Adkins, Randy [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 13, 2001 11:21 AM To: CF-Talk Subject: RE: Capitalize first characters cfset newname = #Ucase(left(old_name,1))# #mid(old_name,2,len(old_name)-1)# -Original

RE: Capitalize First Letter of Each Word

2000-10-27 Thread Jeff Bevill
lk Subject: RE: Capitalize First Letter of Each Word Steve, This code dies if single letter words are present in the string eg "i". Parameter 2 of function Right which is now "0" must be a positive integer, as CF so succinctly puts it. Added this: cfset newword="&qu

RE: Capitalize First Letter of Each Word, OT

2000-10-27 Thread Daniel Kemp
Subject: RE: Capitalize First Letter of Each Word Personally I think this should turn into a "Who can come up with the longest, most convoluted, but beautifully artistic way to Capitalize the First Letter of Each Word" competition. Here's my attempt, I'm sure there are much longe

RE: Capitalize First Letter of Each Word

2000-10-27 Thread Paul Johnston
Neither does mine! And please note I commented it, so it looks long but is actually only a few lines! Paul -Original Message- From: Jeff Bevill [mailto:[EMAIL PROTECTED]] Sent: 27 October 2000 09:32 To: CF-Talk Subject: RE: Capitalize First Letter of Each Word Rich, My "

RE: Capitalize First Letter of Each Word

2000-10-27 Thread Rich Wild
. --- -Original Message- From: John McKown [mailto:[EMAIL PROTECTED]] Sent: Friday, October 27, 2000 2:41 PM To: CF-Talk Subject: RE: Capitalize First Letter of Each Word Ok, I think we have a winner. James Lawrence from Freeserve

RE: Capitalize First Letter of Each Word

2000-10-27 Thread John McKown
PROTECTED]] Sent: Friday, October 27, 2000 9:38 AM To: CF-Talk Subject: RE: Capitalize First Letter of Each Word Ok, I think we have a winner. James Lawrence from Freeserve ([EMAIL PROTECTED]) submitted a little JavaScript that does the job well on the client side. This was the Its only

Re: Capitalize First Letter of Each Word

2000-10-26 Thread Dave Hannum
CFSET First_Name = "dave" CFSET Last_Name = "hannum" CFSET First = #LCase(First_Name)# CFSET FirstName = "#UCase(left(First, 1))##mid(First, 2, len(First) - 1)#" CFSET Last = #LCase(Last_Name)# CFSET LastName = "#UCase(left(Last, 1))##mid(Last, 2, len(Last) - 1)#" CFOUTPUT#FirstName#

Re: Capitalize First Letter of Each Word

2000-10-26 Thread Dave Hannum
Duh - Brain Fart - sorry - I DIDN'T read your whole question. This will do only a couple of words effeciently. Dave (egg on face) - Original Message - From: "Dave Hannum" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 26, 2000 8:47 AM Sub

Re: Capitalize First Letter of Each Word

2000-10-26 Thread Stas Newdel
There's a very powerful custom tag in the gallery, that will capitalize any string and is very customizable. I think the author is Nat Weisse. I used it to properly capitalize news headlines. - Original Message - From: "John McKown" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent:

RE: Capitalize First Letter of Each Word

2000-10-26 Thread James Lawrence
John, Here's a javascript version ( haven't tested it properly, but it should be ok ) SCRIPT LANGUAGE="JAVASCRIPT" !-- function capitalizeMe(obj) { val = obj.value; newVal = ''; val = val.split(' '); for(var c=0; c val.length; c++) { newVal +=

RE: Capitalize First Letter of Each Word

2000-10-26 Thread John McKown
8:54 AM To: CF-Talk Subject: Re: Capitalize First Letter of Each Word Duh - Brain Fart - sorry - I DIDN'T read your whole question. This will do only a couple of words effeciently. Dave (egg on face) - Original Message - From: "Dave Hannum" [EMAIL PROTECTED] To

RE: Capitalize First Letter of Each Word

2000-10-26 Thread John McKown
PROTECTED]] Sent: Thursday, October 26, 2000 8:54 AM To: CF-Talk Subject: RE: Capitalize First Letter of Each Word John, Here's a javascript version ( haven't tested it properly, but it should be ok ) SCRIPT LANGUAGE="JAVASCRIPT" !-- function capitalizeMe(obj) { val =

RE: Capitalize First Letter of Each Word

2000-10-26 Thread James Lawrence
You could always lowercase the whole string by changing the first line to : val = obj.value.toLowerCase(); -Original Message- From: John McKown [mailto:[EMAIL PROTECTED]] Sent: 26 October 2000 14:08 To: CF-Talk Subject: RE: Capitalize First Letter of Each Word This JavaScript DOES

RE: Capitalize First Letter of Each Word

2000-10-26 Thread Dan G. Switzer, II
L PROTECTED]] Sent: Thursday, October 26, 2000 9:08 AM To: CF-Talk Subject: RE: Capitalize First Letter of Each Word This JavaScript DOES work, in the sense that it capitalizes the first letter of each word, but it does not prevent kids from entering stuff like this: "UnBeLiEvAbLe". John

RE: Capitalize First Letter of Each Word

2000-10-26 Thread Daniel Kemp
This would be the ColdFusion way of doing it, if you want to convert it on server time rather than client, turning it into a tag should be no problem. Were you asking for JavaScript or CF? cfset test = "here is a test I wonder if

RE: Capitalize First Letter of Each Word

2000-10-26 Thread Jones, Matt
cfoutput cfloop list="#form.fieldname#" index="myindex" delimiters=" " #Ucase(mid(myindex,1,1))##Lcase(mid(myindex,2,(len(myindex)-1)))# /cfloop /cfoutput -Original Message- From: John McKown [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 26, 2000 7:35 AM To: CF-Talk Subject:

RE: Capitalize First Letter of Each Word

2000-10-26 Thread Steve Martin
- From: Jeff Bevill [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 26, 2000 14:50 To: CF-Talk Subject: RE: Capitalize First Letter of Each Word John McKown, Here ya go man. I only had about 10 mins to write this, hope it works. :) !--- l33t w3rd fixer v1.0 --- !--- Jeff Be

RE: Capitalize First Letter of Each Word

2000-10-26 Thread John McKown
PROTECTED] Subject: RE: Capitalize First Letter of Each Word John McKown, Here ya go man. I only had about 10 mins to write this, hope it works. :) !--- l33t w3rd fixer v1.0 --- !--- Jeff Bevill - [EMAIL PROTECTED] --- cfset Variable="UnBeLiEvAbLe" cfif isDefined("Variable") an

RE: Capitalize First Letter of Each Word

2000-10-26 Thread Chapman, Katrina
to do it for multiple fields let me know. I can build that loop for you as well. --K -Original Message- From: Jeff Bevill [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 26, 2000 6:50 AM To: CF-Talk Subject: RE: Capitalize First Letter of Each Word John McKown, Here ya go man. I on

RE: Capitalize First Letter of Each Word

2000-10-26 Thread John McKown
PROTECTED]] Sent: Thursday, October 26, 2000 9:17 AM To: CF-Talk Subject: RE: Capitalize First Letter of Each Word You could always lowercase the whole string by changing the first line to : val = obj.value.toLowerCase(); -Original Message- From: John McKown [mailto:[EMAIL

RE: Capitalize First Letter of Each Word

2000-10-26 Thread Paul Johnston
-Original Message- From: Jeff Bevill [mailto:[EMAIL PROTECTED]] Sent: 26 October 2000 14:50 To: CF-Talk Subject: RE: Capitalize First Letter of Each Word John McKown, Here ya go man. I only had about 10 mins to write this, hope it works. :) !--- l33t w3rd fixer v1.0 --- !--- Jeff

RE: Capitalize First Letter of Each Word

2000-10-26 Thread Robert Everland
Ticonderoga -Original Message- From: John McKown [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 26, 2000 10:11 AM To: CF-Talk Subject: RE: Capitalize First Letter of Each Word ok, cool. Thanks. John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE