monkfan has asked for the wisdom of the Perl Monks concerning the following question:
How can I convert it into array where each element contain each lines of the text above? into :my $file = 'foo bar qux foo foo foo ';
my $arry = [ 'foo', 'bar', 'qux', 'foo foo foo' ];
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Howto convert lines in stringified text into element of an array
by ikegami (Patriarch) on Sep 04, 2007 at 03:33 UTC | |
|
Re: Howto convert lines in stringified text into element of an array
by GrandFather (Saint) on Sep 04, 2007 at 03:48 UTC | |
by ikegami (Patriarch) on Sep 04, 2007 at 03:55 UTC |