rNotVowels constant

String const rNotVowels

Regular expression selector for characters that are NOT vowels.

As the term is in lowercase, this also selects all uppercase letters and, for that matter, any character not in ['a', 'e', 'i', 'o', 'u', 'y'].

Implementation

static const rNotVowels = '[^aeiouyà-æè-ðò-öø-ÿ]';