in reply to Get ranges from a list of numbers (like 1,2,3 => 1-3)
my @array = (2,3,4,10,11,12); my $set = new Set::IntSpan join(',', @array); my $list = $set->run_list; # $list is now "2-4,10-12"
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Get ranges from a list of numbers (like 1,2,3 => 1-3)
by Doctrin (Beadle) on Apr 09, 2013 at 19:04 UTC |