Well when I started there were no answers but oh well, I'll post my unworthy code anyway.
set_ranged_data("1-5,6a-e,7w-z,10-13"); while(my @enumerated = get_next_range()) { print join("\n", @enumerated); print "\n"; } { my $data; my $pos; sub set_ranged_data { $data = shift; $pos = 0; 1; } sub get_next_range { return unless $data; my $end_pos = index($data, ","); $end_pos = length($data) if ($end_pos) < 0; my $range = substr($data, 0, $end_pos); substr($data, 0, $end_pos + 1) = ""; my @enumerated = _enumerate($range); wantarray ? return @enumerated : return \@enumerated } sub _enumerate { my $range = shift; return ($range) unless index($range, "-") > 0; my ($set, $end_point) = split /-/, $range; my ($begin_lead, $begin_point) = _decompose($set); return map {$begin_lead . $_} ($begin_point .. $end_point); } sub _decompose { my $set = shift; my ($lead, $point) = $set =~ /^(\d+)?(\D)?$/; return ($lead, $point) if ($lead && $point); return ("", $point) if ($point); return ("", $lead) if ($lead); return; } }

In reply to Re: need help to split list by daddyefsacks
in thread need help to split list by bfdi533

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.