Try something like:
c:\@Work\Perl\monks>perl -wMstrict -le
"for my $s (
qq{abcd\t723-724},
qq{abcde\t552-554-553},
qq{abcdef\t756},
qq{abcdef\tfoo},
) {
my $parsed =
my ($base, $groups) =
$s =~ m{ \A ([[:alpha:]]+) \t (\d+ (?: - \d+)*) \z }xms;
;;
die qq{bad string '$s'} unless $parsed;
;;
print qq{'$s' -> };
for my $g ($groups =~ /\d+/g) {
print qq{ '$base' '$g'};
}
}
"
'abcd 723-724' ->
'abcd' '723'
'abcd' '724'
'abcde 552-554-553' ->
'abcde' '552'
'abcde' '554'
'abcde' '553'
'abcdef 756' ->
'abcdef' '756'
bad string 'abcdef foo' at -e line 1.
Update: Well, basically the same idea as tybalt89's approach, but more effort at data validation.
Give a man a fish: <%-{-{-{-<
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.