This was a fun one. Here's a non-golfy solution I quite like, despite its assumptions.

#!/usr/bin/perl -w use strict; use Test::More tests => 1; my @list = qw( 1 2 3 4 5 6a 6b 6c 6d 6e 7 10 11 12 13 ); chomp( my $range = <DATA> ); my @result = split_list( $range ); is_deeply( \@result, \@list ); sub split_list { my $range = shift; my @list; for my $r ( split( /,/, $range ) ) { my $iter = get_points( $r ); while (my $next = $iter->()) { push @list, $next; } } return @list; } sub get_points { my $range = shift; my ($start, $end) = split( /\-/, $range ); return iter_int($start, $end) unless $start =~ /\D/; my ($number, $letter) = $start =~ /^(\d+)(\D)$/; return iter_str( $number, $letter, $number . $end ); } sub iter_int { my ($start, $end) = @_; $end ||= $start; return sub { return if $start > $end; return $start++; }; } sub iter_str { my ($start, $letter, $end) = @_; my $last = ''; return sub { return if $last eq $end; my $next = $start . $letter; $last = $start . $letter++; return $next; }; } __DATA__ 1-5,6a-e,7,10-13

In reply to Re: need help to split list by chromatic
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.