Perl unpack in list context

Posted by drewk on Stack Overflow See other posts from Stack Overflow or by drewk
Published on 2010-04-20T18:51:30Z Indexed on 2010/04/20 19:13 UTC
Read the original article Hit count: 579

Filed under:
|
|

A common 'Perlism' is generating a list as something to loop over in this form:

for($str=~/./g) { print "the next character from \"$str\"=$_\n"; }

In this case the global match regex returns a list that is one character in turn from the string $str, and assigns that value to $_

Instead of a regex, split can be used in the same way or 'a'..'z', map, etc.

I am investigating unpack to generate a field by field interpretation of a string. I have always found unpack to be less straightforward to the way my brain works, and I have never really dug that deeply into it.

As a simple case, I want to generate a list that is one character in each element from a string using unpack (yes -- I know I can do it with split(//,$str) and /./g but I really want to see if unpack can be used this way...)

Obviously, I can use a field list for unpack that is unpack("A1" x length($str), $str) but is there some other way that kinda looks like globbing? ie, can I call unpack(some_format,$str) either in list context or in a loop such that unpack will return the next group of character in the format group until $str is exausted?

I have read The Perl 5.12 Pack pod and the Perl 5.12 pack tutorial and the Perkmonks tutorial

Here is the sample code:

#!/usr/bin/perl
use warnings;
use strict;

my $str=join('',('a'..'z', 'A'..'Z')); #the alphabet...  

$str=~s/(.{1,3})/$1 /g;                #...in groups of three
print "str=$str\n\n";

for ($str=~/./g) { 
    print "regex: = $_\n";
}

for(split(//,$str)) {
    print "split: \$_=$_\n";
}

for(unpack("A1" x length($str), $str)) {
    print "unpack: \$_=$_\n";
}

© Stack Overflow or respective owner

Related posts about perl

Related posts about best-practices