http://qs1969.pair.com?node_id=571424

sam_0056 has asked for the wisdom of the Perl Monks concerning the following question:

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on How to store each line into different variable??

Replies are listed 'Best First'.
Re: How to store each line into different variable??
by davidrw (Prior) on Sep 06, 2006 at 12:01 UTC
    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];