I want to combine [az] only with the exception of the letters a,e,i,o,u
Using a negative set [^aeiou]* I could match everything except a,e,i,o,u , but how to limit my everything to [az] ?
This can be easily done using character class subtraction ( [az-[aeiou]] ) in XML Schema, XPath, .NET (2.0+) and JGsoft-regex, but how to do it in PCRE?
source share