in reply to Re: JAVA [[a-z]&&[^aeiou]] equivalence
in thread JAVA [[a-z]&&[^aeiou]] equivalence

Hello,

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*

There are no rules, there are no thumbs..
Reinvent the wheel, then learn The Wheel; may be one day you reinvent one of THE WHEELS.