in reply to Re^2: Table Extract Header Match
in thread Table Extract Header Match

Of course, you just need to assemble the list of headers the right way. For instance:

#!/usr/bin/perl use feature qw/say/; use warnings; use strict; my $input = 8; my @headers = reverse map { qr/^$_$/; } (0..($input - 1));

HTH!

Replies are listed 'Best First'.
Re^4: Table Extract Header Match
by perlmuser (Novice) on Jul 10, 2014 at 10:01 UTC
    Great Thanks AppleFritter ..