Help for this page
my ($one, $two) = split( /(\d+)\s+/, $line, 2);
my ($one, $two) = $line =~ m[(\d+)\s+(.*)$];