From: "Larry Wall" <[EMAIL PROTECTED]>
> It's unlikely that {n,m} will still have that meaning in Perl 6.  Maybe
we'll
> have something like this:
>
>     Perl 5 Perl 6
>     {1,3} <1..3>
>     {3} <3>
>     {3,} <3+>
>     {0,3} <3->

What are your feelings on multiple ranges for matches?  E.g. the following
expression means "1 to 3, 5, or 10 or more":

    <1..3|5|10+>

-Miko

Reply via email to