Search found 4 matches

by frozenfire
Fri Sep 25, 2009 9:11 pm
Forum: Unreal 3.2 Spamfilters
Topic: ony the word that doesnt include bla bla
Replies: 1
Views: 2824

Re: ony the word that doesnt include bla bla

I think the problem is in the (?
What you probably want here is (?:
by frozenfire
Fri Sep 25, 2009 9:09 pm
Forum: Unreal 3.2 Spamfilters
Topic: Regex for all url
Replies: 2
Views: 3901

Re: Regex for all url

(http://)?[A-Za-z0-9\-.]+\.[a-z]+(/[^ ])*
by frozenfire
Fri Sep 25, 2009 9:07 pm
Forum: Unreal 3.2 Spamfilters
Topic: drone/clone
Replies: 10
Views: 18647

Re: drone/clone

Try removing the ! at the end.
by frozenfire
Fri Sep 25, 2009 9:01 pm
Forum: Unreal 3.2 Spamfilters
Topic: stop clones . with spamfilter..
Replies: 16
Views: 58434

Re: stop clones . with spamfilter..

Okay, here we go, explaining (.+)!\1@[^:]+:\1$! We'll start with (.+) We'll ignore the () for now. The . means any character. The + is the repetion, one or more. So .+ is simply one or more characters. Next is the \1. That's simple, it just means "the same as the first one between () got us&quo...