in reply to Trouble understanding pack/unpack syntax.
Why would you think that? Test it out.
Produces:#/usr/bin/perl use strict; use warnings; use Data::Dumper; my $line = "FooBarBaz"; my @array = unpack('A3A3A3',$line); print Dumper \@array;
So A16 will produce 1 element.$VAR1 = [ 'Foo', 'Bar', 'Baz' ];
As to your signature: I would suggest reading something I wrote earlier.
|
|---|