in reply to Parsing Info
Depending on the size of the file I would read it all into a string and slit on /^\n/.a b c d e f
open(FILE,"<some.file"); $string = <FILE>; @array = split(/^\n/,$string); # split where the \n is the first thing + on that line. # then do stuff with each element in @array.
|
|---|