Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: How Much Is Too Much (on one line of code)?

by ForgotPasswordAgain (Priest)
on Jun 18, 2007 at 17:01 UTC ( [id://621827]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $country = $card->country;
    $country = '' if $country eq 'gbr';
    $country = uc("[$country]") if $country;
    
  2. or download this
    my $country = $card->country;
    if ($country and $country ne 'gbr') {
    ...
    } else {
        $country = '';
    }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (10)
As of 2024-04-23 08:40 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found