RE: SHOUTING

2005-10-30 Thread Jim Davis
mitted and present a warning ("Your message is 95% capital letters. If you're shouting, please don't shout.") You can use the metrics collected (a simple log of messages which got the warning would do) to check on how people are doing (are they honoring the warning or not?) For

RE: SHOUTING

2005-10-30 Thread Bobby Hartsfield
ng is longer than a specific number. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Sunday, October 30, 2005 12:40 PM To: CF-Talk Subject: RE: SHOUTING Here ya go... function u

RE: SHOUTING

2005-10-30 Thread Bobby Hartsfield
percase characters? #tooMnayUC# ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Sunday, October 30, 2005 11:38 AM To: CF-Talk Subject: RE: SHOUTING > Maybe the Lcase function? I don’t believe that’s what the lcase f

RE: SHOUTING

2005-10-30 Thread Bobby Hartsfield
nt: Sunday, October 30, 2005 1:12 AM To: CF-Talk Subject: Re: SHOUTING Maybe the Lcase function? Jenny - Original Message - From: "Saturday (Stuart Kidd)" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, October 24, 2005 6:02 PM Subject: stop: SHOUTING >

Re: SHOUTING

2005-10-30 Thread Webmaster at FastTrack On Line
Maybe the Lcase function? Jenny - Original Message - From: "Saturday (Stuart Kidd)" <[EMAIL PROTECTED]> To: "CF-Talk" Sent: Monday, October 24, 2005 6:02 PM Subject: stop: SHOUTING > Hi guys, > > Just wondering if anyone knows a good way to reco

RE: SHOUTING

2005-10-24 Thread Taco Fleur
$15 a year, .COM.AU for AUSD$50 two years! ** Seamless Merchant integration ** We endorse PayPal, accept payments online now! > -Original Message- > From: Bryan Stevenson [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 25 October 2005 4:20 AM > To: CF-Talk > Subject: Re: SHOUTING

Re: stop: SHOUTING

2005-10-24 Thread Saturday (Stuart Kidd)
> lcasecount = len(rereplace(str,"[^a-z]","","ALL")); > if(ucasecount gt lcasecount){ > writeoutput("More uppercase ("&ucasecount&") than lowercase > ("&lcasecount&") > characters found. you might be SHOUTING.&q

RE: stop: SHOUTING

2005-10-24 Thread Kerry
ount gt lcasecount){ writeoutput("More uppercase ("&ucasecount&") than lowercase ("&lcasecount&") characters found. you might be SHOUTING."); } -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: 24 October 2005 19:19 To: CF-Talk Subjec

Re: SHOUTING

2005-10-24 Thread Bryan Stevenson
a brute force method would be to check the ascii number of each character (caps have diff number than lower) ;-) Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

RE: stop: SHOUTING

2005-10-24 Thread Kerry
nt = len(rereplace(str,"[A-Z]","","ALL")); if(ucasecount gt lcasecount){ writeoutput("More uppercase ("&ucasecount&") than lowercase ("&lcasecount&") characters found. you might be SHOUTING."); } -Original Message- From:

Re: stop: SHOUTING

2005-10-24 Thread Charlie Griefer
a TEXTAREA is quite a bit. > > Sure there is another way.. Hopefully someone has an easy answer. > > -Original Message- > From: Saturday (Stuart Kidd) [mailto:[EMAIL PROTECTED] > Sent: Monday, October 24, 2005 2:03 PM > To: CF-Talk > Subject: stop: SHOUTING > >

RE: stop: SHOUTING

2005-10-24 Thread Justin D. Scott
> Just wondering if anyone knows a good way to recognise > when all the characters are capitalised? Some users > love putting text in CAPS and it just looks awful when > it's displayed on screen. Ben's regexp should work, or you can compare... is all caps -Justin Scott

Re: stop: SHOUTING

2005-10-24 Thread Ben Doom
refind("[a-z]", text) is 0 Looks to find the first lowercase letter. If none are found, it returns 0. Of course, it won't help you find things like "i HAVE MY CAPS LOCK ON BY MISTAKE, sTUART!" --Ben Saturday (Stuart Kidd) wrote: > Hi guys, > > Just wondering if anyone knows a good way to reco

RE: stop: SHOUTING

2005-10-24 Thread Adkins, Randy
(Stuart Kidd) [mailto:[EMAIL PROTECTED] Sent: Monday, October 24, 2005 2:03 PM To: CF-Talk Subject: stop: SHOUTING Hi guys, Just wondering if anyone knows a good way to recognise when all the characters are capitalised? Some users love putting text in CAPS and it just looks awful when it&#

stop: SHOUTING

2005-10-24 Thread Saturday (Stuart Kidd)
Hi guys, Just wondering if anyone knows a good way to recognise when all the characters are capitalised? Some users love putting text in CAPS and it just looks awful when it's displayed on screen. Any help I'd be grateful. Thanks, Saturday