in reply to Re^3: Perl script speed
in thread Perl script speed

ya, I have portions in the file which have extra column. but it is not the problem area. Even the columns having 16 without adjustment is showing this error.

Replies are listed 'Best First'.
Re^5: Perl script speed
by poj (Abbot) on Jun 02, 2014 at 15:43 UTC
    Disable parsing the INST lines by adding a immediate return to sub instLine and see if the other lines load ok.
    sub instLine { return; . .
    poj