Hi, I have a text file that's composed of fixed length records but all in one line with no line breaks in between. What's the best way to process it in Perl? Thanks!
|
|
unpack() may be of use here. You can specify the list of characters (using 'c', 'C' or 'W') and it'll unpack automatically into a list. See the pack documentation for the options to use. |
|||
|
|
|
|
use the
... and process the buffer using regular expressions, |
||
|
|
|
|
First, let's open the file, and make sure it's in bin mode:
Now, set input record separator to reference to length of your records (let's assume 120 bytes per record):
Now, let's read the records:
And now if you want to get data out of it, you have to write some unpack thing:
Now you can process @elements, and finish while() {} loop:
Whole "program":
|
||||||||||
|
