Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: File parse

by myocom (Deacon)
on Dec 05, 2002 at 18:41 UTC ( [id://217850]=note: print w/replies, xml ) Need Help??


in reply to File parse

This is a perfect job for unpack. The following test code should prove helpful:

use strict; while (<DATA>) { chomp; my @array = unpack("A12A16A11A*", $_); # @array has 4 elements now print map("'$_'\n", @array); } __DATA__ 0x130005d 1.253.54.1_MIB 0x230f0 SNMP 0x130009c 0x1006b SnmpPif
"One word of warning: if you meet a bunch of Perl programmers on the bus or something, don't look them in the eye. They've been known to try to convert the young into Perl monks." - Frank Willison

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://217850]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-03-29 06:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found