F
fred78980
Case1
This is my RE to negate cer which is OK
negation of (cer)
(\w{0,10})(?<!c)er
This take every word ending with er except word that end cer
Case2
and I use a similar RE to negate bcer
negation of (bcer)
(\w{0,10})(?<!b)(?<!c)er
I tried (?<!bc) which is not working
Case 3
negation of (b|c|d)er
(\w{0,10})(?<!b)(?<!c)(?<!d)er
This RE is too long
Please help me with case 2 and 3.
Many thanks
This is my RE to negate cer which is OK
negation of (cer)
(\w{0,10})(?<!c)er
This take every word ending with er except word that end cer
Case2
and I use a similar RE to negate bcer
negation of (bcer)
(\w{0,10})(?<!b)(?<!c)er
I tried (?<!bc) which is not working
Case 3
negation of (b|c|d)er
(\w{0,10})(?<!b)(?<!c)(?<!d)er
This RE is too long
Please help me with case 2 and 3.
Many thanks