Capitalize

2011-07-02 Thread Jenny Gavin-Wear
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 in upper case. Jenny ~| Order the Adobe Coldfusion Anthology

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
: Capitalize 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

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
, 2002 2:31 PM To: CF-Talk Subject: capitalize first letter 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. __ Structure your

Re: capitalize first letter

2002-07-17 Thread William H. Bowen
: Wurst, Keith D. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 17, 2002 12:31 PM Subject: capitalize first letter 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

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
]) * @version 2, July 27, 2001 */ function capFirstTitle(initText){ var Words = ; var j = 1; var m = 1; var doCap = ; var thisWord = ; var excludeWords = ArrayNew(1); var outputString = ; initText = LCASE(initText); //Words to never capitalize excludeWords[1] = an; excludeWords[2

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

Capitalize first characters

2001-09-13 Thread thanh . nguyen
Hi all, I'm just starting to learn coldfusion and I'm looking for a function or a way to capitalize the first character of words in a string. Can this be done? Can someone help me with this? Thanks ~~ Structure your ColdFusion code

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
, September 13, 2001 10:21 AM To: CF-Talk Subject: Capitalize first characters Hi all, I'm just starting to learn coldfusion and I'm looking for a function or a way to capitalize the first character of words in a string. Can this be done? Can someone help me with this? Thanks

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
To: CF-Talk Subject: Capitalize first characters Hi all, I'm just starting to learn coldfusion and I'm looking for a function or a way to capitalize the first character of words in a string. Can this be done? Can someone help me with this? Thanks

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

Capitalize First Letter of Each Word

2000-10-26 Thread John McKown
Can someone share a script that will capitalize the first letter of every word entered into a form field? John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED] phone: 302-736-5515 fax: 302-736-5945 icq: 1495432

Re: Capitalize First Letter of Each Word

2000-10-26 Thread Dave Hannum
uot;John McKown" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Thursday, October 26, 2000 8:35 AM Subject: Capitalize First Letter of Each Word Can someone share a script that will capitalize the first letter of every word entered into a form field? John McKown, VP Business Serv

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" [E

RE: Capitalize First Letter of Each Word

2000-10-26 Thread James Lawrence
[EMAIL PROTECTED] Web Developer, Freeserve.com Plc The Observatory, 36-41 Clerkenwell Close, Finsbury, London. EC1R OAU Telephone: 02075534832 Mobile: 07971024911 -Original Message- From: John McKown [mailto:[EMAIL PROTECTED]] Sent: 26 October 2000 13:35 To: CF-Talk Subject: Capitalize Firs

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
00 7:35 AM To: CF-Talk Subject: Capitalize First Letter of Each Word Can someone share a script that will capitalize the first letter of every word entered into a form field? John McKown, VP Business Services Delaware.Net, Inc. 30 Old Rudnick Lane, Suite 200 Dover, DE 19901 email: [EMAIL PROTECTED

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