PERL中怎样倒序匹配

PERL中怎样倒序匹配

Number of retransmitted PDUs (uplink/downlink) per coding scheme per cell on the RF interface (9,4) Sat Sep 27 02:00:00 2008 ptppkf {1 1 0 0} 80 BSS:1/SCANGPRS:0 60 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0

在perl中怎么匹配这一行中最后26个数,要求方法最简单,准确(排除按顺序一个个地去匹配).
希望高手帮忙.
[fly]php忠实网迷[/fly]


[Copy to clipboard] [ - ]
CODE:
#!/usr/bin/perl -w

my $mystr = 'Number of retransmitted PDUs (uplink/downlink) per coding scheme per cell on the RF interface (9,4) Sat Sep 27 02:00:00 2008 ptppkf {1 1 0 0} 80 BSS:1/SCANGPRS:0 60 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30 0 0 0 0 0 0 0 0 0 0 0';

if ( $mystr =~ m/([0-9]+ ?){26}$/ ) {
    print "[$&]", "\n";
}