Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Call for code samples!

by jryan (Vicar)
on Nov 15, 2001 at 20:49 UTC ( [id://125611]=note: print w/replies, xml ) Need Help??


in reply to Call for code samples!

Here is a snippet that I used in Quick Memos, that some of your Business-Oriented customers might find useful someday:
my($username1,$username2)=($username)x2; $username1 =~ s/([a-z])([a-z]+)_([a-z])([a-z]+)\@.*/$1/g; $username2 =~ s/([a-z])([a-z]+)_([a-z])([a-z]+)\@.*/$3/; $username1 =~ tr/[a-z]/[A-Z]/; $username2 =~ tr/[a-z]/[A-Z]/; $username =~ s/([a-z])([a-z]+)_([a-z])([a-z]+)/$username1$2 $username2 +$4/;

This will break an apart an email addresss of the form: first_name@domain.whatever and change it into the form: First Name.

Looking back, I could have also done it like this:
$username =~ s/([a-z])([a-z]+)_([a-z])([a-z]+)\@.*/uc($1).$2." ".uc($3 +).$4/ge;
Thats slightly more (complic|obfusc)ated, but it still gets the job done.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://125611]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2024-04-26 01:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found