Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re^2: reduce line of code

by ysth (Canon)
on Jul 14, 2009 at 06:36 UTC ( [id://779809]=note: print w/replies, xml ) Need Help??


in reply to Re: reduce line of code
in thread reduce line of code

I often prefer setting a default, then overwriting with the validated value:
my $cmd = 0; $cmd = $step_no if $step_no =~ /\A\d+\z/;

Replies are listed 'Best First'.
Re^3: reduce line of code
by lima1 (Curate) on Jul 14, 2009 at 08:52 UTC
    I guess this is what Sun751 meant. His non-working example scopes the $cmd variable to the if ... else blocks.
      OT: just add
      use strict ; use warnings ;
      to your programs, witch would have detected your scoping problem!

      LuCa

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (5)
As of 2024-04-23 20:25 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found