Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: How to store each line into different variable??

by davidrw (Prior)
on Sep 06, 2006 at 12:01 UTC ( [id://571429]=note: print w/replies, xml ) Need Help??


in reply to How to store each line into different variable??

what did you try so far?

If it's _always_ (as in completely written in stone) exactly two lines, then just declare them and populate w/split:
my ($line1, $line2) = split /[\r\n]+/, $message;
If anything other than that, then you're probably better off w/an array:
my @lines = split /[\r\n]+/, $message; print "Line1: " . $lines[0];

Log In?
Username:
Password:

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

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

    No recent polls found