in reply to Parsing Log File Help!
Taking a guess, I think the first part of your program can be replaced by:
as the regular expression is not good. But that does assume whitespace-delimited log entries. Could you post a sample of the logfile?foreach (<LOGFILE>) { push @logg, split; }
Update: Changed the assignment to a push. Thanks Enlil.
|
|---|