Help for this page
my ($one, $two, $three) = split( /(\d+)\s+/, $line, 2);
split(/([,-])/, "1-10,20", 3);
(1, '-', 10, ',', 20)