Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Conditional variable assignments

by dvergin (Monsignor)
on May 26, 2003 at 05:15 UTC ( [id://260774]=note: print w/replies, xml ) Need Help??


in reply to [untitled node, ID 260676]

This is a different approach which may or may not suit your needs:
my %types = ( 0 => 'male', 1 => 'female', 2 => 'robot' ); $this_user = $types{$some_value};
Or, if you are going to use the categories only one time, you can code them as an on-the-fly anonymous hash...
$this_user = { 0 => 'male', 1 => 'female', 2 => 'robot' }->{$some_value};
HTH, David

------------------------------------------------------------
"Perl is a mess and that's good because the
problem space is also a mess.
" - Larry Wall

Log In?
Username:
Password:

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

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

    No recent polls found