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

Re^2: Split function

by ColonelPanic (Friar)
on Dec 03, 2012 at 13:42 UTC ( [id://1006880]=note: print w/replies, xml ) Need Help??


in reply to Re: Split function
in thread Split function

If you are going to do error checking, why not do it properly? Check that all fields are present:

(my ($s, $a, $c, $r) = split /[,\t]/) < 4 and die;
or:
die if not defined $r;

(Also, you had a typo in your code: extra paren)



When's the last time you used duct tape on a duct? --Larry Wall

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (9)
As of 2024-04-18 11:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found