Advertisement

07.31.2005 at 09:46AM PDT, ID: 21510572
[x]
Attachment Details

Perl Regex Uppercase First Word in String Variation

Asked by Bob-Villa in Perl Programming Language

Tags: uppercase, perl, first, regex, word

I use the following regex to make every word in a string to make all words have first character uppercase.

$str="JB morGan & CO";
$str=uc($str);
$str=~ s/(\w+)/\u\L$1/g;

in this example my result would be Jb Morgan & Co which is ok in most cases

I would like to be able to toggle the output depending on input. e.g. Let's say I have a field that a user will enter only the name of a company. I may want PERL to uppercase only words in a string that are longer than 2 characters using a routine.

$company=&ucwords("Jb morGan & CO",2);

sub ucwords {
my $str=$_[0];
my $lim=$_[1];
my $result;
$str= some regex to uppercase words longer than $lim
return $result;
}

in this example, with the proper code, my result would be JB Morgan & CO
Start Free Trial
 
 
[+][-]07.31.2005 at 11:52AM PDT, ID: 14565826

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.31.2005 at 11:55AM PDT, ID: 14565839

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.31.2005 at 11:59AM PDT, ID: 14565847

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.31.2005 at 12:24PM PDT, ID: 14565920

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.31.2005 at 12:49PM PDT, ID: 14565986

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]07.31.2005 at 01:03PM PDT, ID: 14566033

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zone: Perl Programming Language
Tags: uppercase, perl, first, regex, word
Sign Up Now!
Solution Provided By: ozo
Participating Experts: 4
Solution Grade: A
 
 
[+][-]07.31.2005 at 02:44PM PDT, ID: 14566369

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32