I was trying to match the following line

      5474c2ef012a759a c11ab88ae8daa276 63693b53799c91f1 be1d8c8738733d80 

with

  if(/[[:xdigit:]{8}[:xdigit:]{8}\s]{4}/)

Is there anyway I populate the automatic variables $1,$2,$3..$8 etc with half of each of those words. i.e

  $1=5474c2ef
  $2=012a759a
  $3=c11ab88a
  $4=e8daa276
  $5=63693b53
  $6=799c91f1
  $7=be1d8c87
  $8=38733d80
link|improve this question

69% accept rate
feedback

4 Answers

You could capture them in an array:

use strict;
use warnings;
use Data::Dumper;

$_ = '5474c2ef012a759a c11ab88ae8daa276 63693b53799c91f1 be1d8c8738733d80 '; 

my @nums = /\G(?:([[:xdigit:]]{8})([[:xdigit:]]{8})\s)/g;
if (@nums >= 8) {
    print Dumper(\@nums);
}

(may behave differently than the original if there are more than four or if there're earlier 16-hex-digit sequences separated by more than just a space).

link|improve this answer
I really dislike Data::Dumper. – tchrist May 6 '11 at 0:47
@tchrist: wherefore? – ysth May 6 '11 at 0:54
Wherefore I don’t use it. (wherefore means “which is why” or “and so”) – tchrist May 6 '11 at 0:55
I don’t use it because I find its output horrible to read. Within the Perl CORE modules, Dumpvalue serves my purposes better, which is reading the output. But Data::Dump [ sic: no -er] from CPAN is even nicer, because it doesn’t have a miserable interface. – tchrist May 6 '11 at 1:03
fortunately my English allows words multiple meanings :) – ysth May 6 '11 at 1:22
show 7 more comments
feedback

How about:

my $pat = '([[:xdigit:]]{8})\s?' x 8;
# produces: ([[:xdigit:]]{8})\s?([[:xdigit:]]{8})\s?....
/$pat/;

Update if you need to be strict on the spacing requirement:

my $pat = join('\s', map{'([[:xdigit:]]{8})' x 2} (1..4));
# produces: ([[:xdigit:]]{8})([[:xdigit:]]{8})\s....
/$pat/;
link|improve this answer
feedback
use strict;
use warnings;
use Data::Dumper;

$_ = '5474c2ef012a759a c11ab88ae8daa276 63693b53799c91f1 be1d8c8738733d80 '; 

if (/((?:[[:xdigit:]]{16}\s){4})/) {
   my @nums = map {  /(.{8})(.{8})/  } split /\s/, $1;
   print Dumper(\@nums);
}

__END__

$VAR1 = [
          '5474c2ef',
          '012a759a',
          'c11ab88a',
          'e8daa276',
          '63693b53',
          '799c91f1',
          'be1d8c87',
          '38733d80'
        ];
link|improve this answer
A simpler one line solution ? ;) – alertjean May 6 '11 at 0:39
Aside from the if, there is only one line. – toolic May 6 '11 at 0:46
feedback

Yes, there is, but you don’t want to.

You just want to do this:

 while ( /(\p{ahex}{8})/g ) { print "got $1\n" }
link|improve this answer
I want to :) Because I am planning to compute $1+$8, $2+$7 etc – alertjean May 6 '11 at 0:56
Fine, then say @nums = /\p{ahex}{8}/g, and then you have your set, which you can then sum together pairwise as hex($num[0]) + hex($num[7]), hex($num[1]) + hex($num[6]), hex($num[2]) + hex($num[5]), and hex($num[3]) + hex($num[4]) — assuming those are the pairs you want combined. Wait, do you mean string concatenate not arithmetic sum? – tchrist May 6 '11 at 0:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.