how to replace emails & links in a string ?

This is a discussion on how to replace emails & links in a string ? within the alt.comp.lang.php forums, part of the PHP Programming Forums category; hi, i want to remove emails & links strings in a string, replacing them with **** for instance. I don't ...


Go Back   Usenet Forums > PHP Programming Forums > alt.comp.lang.php

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 01-24-2004
Fred
 
Posts: n/a
Default how to replace emails & links in a string ?

hi,

i want to remove emails & links strings in a string, replacing them with
**** for instance.
I don't know how to do with regexp...could you help me ?

ex :
source text : "hello, write to zozo@zozo.com and look http://toto.zozo.com
!!"
i wantr : "hello, write to ************* and look ******************** !!"

thanks for any help !

fred


Reply With Quote
  #2 (permalink)  
Old 01-25-2004
Bryan Chan
 
Posts: n/a
Default Re: how to replace emails & links in a string ?

$sText = "hello, write to zozo@zozo.com and look http://toto.zozo.com !!";
$sMask = preg_replace('/((http:\\/\\/)?[-_a-z0-9]+([@\\.][-_a-z0-9]+)+)/ie',
'str_repeat("*", strLen("\\1"))', $sText);
print $sMask;

Bryan


"Fred" <frederes@free.fr> wrote in message
news:buttsb$ol7$1@news-reader5.wanadoo.fr...
> hi,
>
> i want to remove emails & links strings in a string, replacing them with
> **** for instance.
> I don't know how to do with regexp...could you help me ?
>
> ex :
> source text : "hello, write to zozo@zozo.com and look http://toto.zozo.com
> !!"
> i wantr : "hello, write to ************* and look ******************** !!"
>
> thanks for any help !
>
> fred
>
>



Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +1. The time now is 08:57 AM.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0