Regex's for the following...

These are old archives. They are kept for historic purposes only.
Post Reply
TripleH
Posts: 1
Joined: Fri Aug 01, 2008 1:57 pm

Regex's for the following...

Post by TripleH »

Could anyone be kind enough to assist me with creating a spam filter syntax for the following bots.

They join under the pattern of FIRSTNAMELASTNAME### (3 numbers). Their ident also includes their first name as well. For example


eliudplacencia078 IDENT: Eliud
maryjanekatowa532 IDENT: Maryjane
bobreynolds345 IDENT: Bob


Again, the format seems to be first name (Bob), last name (Reynolds), and 3 random numbers. Much help would be appreciated
Stealth
Head of Support
Posts: 2086
Joined: Tue Jun 15, 2004 8:50 pm
Location: Chino Hills, CA, US
Contact:

Re: Regex's for the following...

Post by Stealth »

This should work:

Code: Select all

^(.+).+\d{3}!~?\1@
Post Reply