When extracting configuration data from managed network gear such as Juniper or Cisco switches, consecutive vlans are combined into ranges "from-to". Given a $list of vlans such as "2-4,10-12" I needed an @array of every single vlan. An easy way to accomplish this is to make use of Perl's ".." range operator like so:
my $list = "2-4,10-12";
$list =~ s/\-/../g;
my @array = eval( $list );
# @array is now (2,3,4,10,11,12)
So far so good. What I'm looking for is an equally simple way to reverse the process. I mashed together the following code to get the job done but it's just painful to look at:
my @array = (2,3,4,10,11,12);
my @vlans = ();
my $span = undef;
my $last = undef;
foreach my $vlan (sort @array) {
if (defined $last && $vlan == $last+1) {
unless (defined $span) {
$span = $last;
}
$vlans[$#vlans] = $span.'-'.$vlan;
} else {
push @vlans, $vlan;
$span = undef;
}
$last = $vlan;
}
my $list = join(',', @vlans);
# $list is now "2-4,10-12" again
Surely there must be a better way?!
Edit: Single elements should appear like "2-4,7,10-12,20". Sorry for not pointing this out.
--
Time flies when you don't know what you're doing
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.