Perl Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesPerl Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old February 10th, 2003, 03:03 PM
mizzory mizzory is offline
Wave Emulator
Dev Shed Novice (500 - 999 posts)
 
Join Date: Feb 2001
Location: STL
Posts: 525 mizzory Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 1 Day 11 h 50 m 36 sec
Reputation Power: 0
Send a message via Google Talk to mizzory
Upper Case Help

What is the code to make a string where the first letter of a variable upper case and has the rest in lower case?

I can make everything upper case by using /U or lower case using /u.

Reply With Quote
  #2  
Old February 10th, 2003, 04:14 PM
vpopper's Avatar
vpopper vpopper is offline
Contributing User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jun 2000
Location: Southern California
Posts: 73 vpopper User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 2 m 24 sec
Reputation Power: 10
I'm not sure exactly what you are trying to achieve, so I'll give a solution for several scenarios:

1). You have a lowercase string, and you want the first character uppercase:

Code:
$str = ucfirst($str);


2). You have a lowercase string, and you want to change all "words" to have their first character uppercase:

(Note that you need the '(?<!\')' to keep "isn't" from becoming "Isn'T")...

Code:
my $s  = q{this is a sentence};
my $s2 = q{this isn't a sentence};

$s  =~ s/(?<!\')\b(\w+)/\u$1\E/g;
$s2 =~ s/(?<!\')\b(\w+)/\u$1\E/g;

print $s, "\n";   #==>   This Is A Sentence
print $s2, "\n";  #==>   This Isn't A Sentence


3). You have a string in which you want to capitalize the first character of a certain word:

Code:
$s = 'going to capitalize foo now';

$s =~ s/\b(foo)\b/\u$1\E/;
print $s, "\n";   #==>  going to capitalize Foo now

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesPerl Programming > Upper Case Help


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
How to Present Effectively Online
This white paper offers practical and actionable advice on the key steps that any presenter should consider as they plan and execute a Webinar or online meeting.

 
Open Source Security Myths
Open Source Software (OSS) is computer software whose source code is available to the general public with relaxed or non-existent intellectual property restrictions (or arrangement such as the public domain), and is usually developed with the input of many contributors.

 
Power and Cooling Capacity Management for Data Centers
This paper describes the principles for achieving power and cooling capacity management.

 
Scalable, Fault-Tolerant NAS for Oracle - The Next Generation
For several years NAS has been evolving as a storage alternative for Oracle databases, and for good reason: NAS is quite often the simplest, most cost-effective storage approach for Oracle. Learn about the benefits that HP's approach to scalable NAS brings to Oracle environments in this comprehensive white paper.

 
Understanding Web Application Security Challenges
This white paper discusses many common threats and preventive measures for Web application security, and explains what you can do to help protect your organization.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 Hosted by Hostway
Stay green...Green IT