in reply to Parsing a text file
which be would be more perlish aswhile (<LOG>){ $string .= $_; } @array = split(/\n/, $string); foreach (@array) {
However, you old horses, remember the last time you were exploring a larger Perl module/framework/whatever and failed that Framework::Foo::Bar is actually a subclass of XY::Unknown (via eval in Framework::Factory and some invisible magic in Framework::Magician)while (<LOG>){ chomp;
|
|---|