ony the word that doesnt include bla bla

These are old archives. They are kept for historic purposes only.
Post Reply
Narkoz
Posts: 4
Joined: Mon Jun 23, 2008 2:01 am

ony the word that doesnt include bla bla

Post by Narkoz »

i want to make a regexp
such;

/spamfilter + c block - test (?i)g(ö|o)t(?!ür|ur)

by this i try to block the words that not being followed by "ür or ur" chars

but the result is :


Error in regex '(?i)g(ö|o)t(?!ür|ur)': Invalid regexp


What is wrong with my regex?

how can i do the thing that i want, can you give me some example thanx.


and ( which of source of regexp tutorial or something like must i accept the correct one for unrealircd?)
frozenfire
Posts: 4
Joined: Fri Sep 25, 2009 8:38 pm

Re: ony the word that doesnt include bla bla

Post by frozenfire »

I think the problem is in the (?
What you probably want here is (?:
Post Reply