Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
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??

Help for this page

Select Code to Download


  1. or download this
    my($username1,$username2)=($username)x2;
    $username1 =~ s/([a-z])([a-z]+)_([a-z])([a-z]+)\@.*/$1/g;
    ...
    $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/;
    
  2. or download this
    $username =~ s/([a-z])([a-z]+)_([a-z])([a-z]+)\@.*/uc($1).$2." ".uc($3
    +).$4/ge;
    

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 perusing the Monastery: (6)
As of 2024-04-24 12:46 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found