Help for this page
my ( $last, $two ) = $string =~ m/(\d+),(\d+)$/;
my @pairs; while( $string =~ m/(\d+),(\d+)/g ) { push @pairs, [$1,$2]; }