Re: Changes to perlfaq.pod intro

[email protected] (Dave Cross) Fri, 06 Jan 2006 19:01:50 +0000
Newsgroups perl.perlfaq.workers,perl.documentation
Message-ID <[email protected]>
Nicholas Clark wrote:
>
> =head2 I am a spammer; how do I send mail to all the addresses in these documents?
> 
> The first task is to remove the obfuscation. For this, Perl's regexps are
> ideally suited. If the obfuscated address is in C<$addr>
> 
>    s/\s*\[at\]\s*/\@/g;
>    s/\s*\[dot\]\s*/./g;

[ snip ]

> =cut
> 
> Maybe we don't add that A to the FAQ. :-)

Maybe we do. You code appears to do nothing useful to $addr :)

Dave...