On 10-08-03 06:43 AM, Rob Coops wrote:
Third you could of course when you are printing the values from the array
add the linefeeds:
print join("\n", @myarray);
or
foreach my $value ( @myarray ) {
print $value . "\n";
When printing, use a list; it's faster.
print $value, "\n";
--
Just my 0.00000002 million dollars worth,
Shawn
Programming is as much about organization and communication
as it is about coding.
The secret to great software: Fail early & often.
Eliminate software piracy: use only FLOSS.
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/