http://qs321.pair.com?node_id=555982


in reply to can split() use a regex?

If you really wanted to split on '\d+\s+' you'd need to single quote the regex, ie:
my ($one, $two) = split('\d+\s+', $line);