Hi all.
I'm new to the list, and I'm trying to figure out a way of detecting
words with obfuscated characters (i.e. "@pp!3", "app13" = "apple").
I set up a test something like this:
/(?:a|4|@)pp(?:l|1|!)(?:e|3)/i
This will catch "@pp!3" and "app13", but it also catches "apple". Can
anyone
Thu, Nov 13, 2003 at 03:33:28PM -0600, Michael Howell wrote:
> > /(?:a|4|@)pp(?:l|1|!)(?:e|3)/i
>
> ewww... at least do:
>
> /[EMAIL PROTECTED]/i
>
> > This will catch "@pp!3" and "app13", but it also catches "apple". Can
>