Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Transforming a scalar to an array

by davorg (Chancellor)
on Jul 15, 2009 at 15:04 UTC ( [id://780349]=note: print w/replies, xml ) Need Help??


in reply to Transforming a scalar to an array

I realize that local( $/, *INPUT ); gets rid of the new lines.

It doesn't actually. You end up with a scalar that still has a newline at the end of each line of text. You can, of course, use that to your advantage.

my @lines = split /\n/, $input;
--

See the Copyright notice on my home node.

Perl training courses

Replies are listed 'Best First'.
Re^2: Transforming a scalar to an array
by ikegami (Patriarch) on Jul 15, 2009 at 15:19 UTC
    That's different from <> in that it will trim trailing blank lines (which is probably fine) and chomp all lines (which is probably fine).

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (3)
As of 2024-04-26 03:29 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found