Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use unpack to split a string into characters in Perl?

Tags:

perl

unpack

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";
}
like image 451
dawg Avatar asked Apr 20 '10 18:04

dawg


People also ask

How do I split a string into a character in Perl?

If you need to split a string into characters, you can do this: @array = split(//); After this statement executes, @array will be an array of characters. split recognizes the empty pattern as a request to make every character into a separate array element.

How do I split a string into multiple strings in Perl?

Below is the syntax of split function in perl are as follows. Split; (Split function is used to split a string.) Split (Split function is used to split a string into substring) /pattern/ (Pattern is used to split string into substring.)

How do I split multiple characters in Perl?

split() is a string function in Perl which is used to split or you can say to cut a string into smaller sections or pieces. There are different criteria to split a string, like on a single character, a regular expression(pattern), a group of characters or on undefined value etc..

How do I find a character in a string in Perl?

Using the Perl index() function The index() function is used to determine the position of a letter or a substring in a string. For example, in the word "frog" the letter "f" is in position 0, the "r" in position 1, the "o" in 2 and the "g" in 3. The substring "ro" is in position 1.


1 Answers

pack and unpack templates can use parentheses to group things much like regexps can. The group can be followed by a repeat count. * as a repeat count means "repeat until you run out of things to pack/unpack".

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

You'd have to run a benchmark to find out which of these is the fastest.

like image 66
cjm Avatar answered Oct 10 '22 11:10

cjm