On 12/9/23 22:49, William Michels via perl6-users wrote:
f $x.match( / ^ <+[0..9] + [a..z]> ** 7 $ / ) { do something...};


What is the difference between

    <+[0..9]
and
   <[0..9]


And
    / ^ <+[0..9] + [a..z]> ** 7 $ /

does this mean that both [0..9] AND [a..z] have to
be present.  In other words is the an AND or an OR?



Reply via email to