PDA

View Full Version : Removing all email addresses from text


toolkit
10-28-2002, 01:37 PM
Could anyone help me with a script to remove all email addresses from a string?

Cheers!

chrisvmarle
10-28-2002, 04:26 PM
I guess this should work:

$text_with_emails =~ s/(\S+)\@(\S+)\.(\S+)/\[email\]/g;

Mzzl, Chris

toolkit
10-28-2002, 04:32 PM
Cheers chris!