in reply to Re: JAVA [[a-z]&&[^aeiou]] equivalence
in thread JAVA [[a-z]&&[^aeiou]] equivalence
nice info choroba. Glancing the doc you linked the following is even neater to my eyes:
my @match = grep /(?[ [a-z] - [aeiou] ])/, map chr, 0 .. 255;
L*
|
---|