Jump to content
  • 0

Найти в тексте email и ссылки, а потом их выделить (php, регулярки)


Bebeka
 Share

Question

К примеру в базе есть текст:

"Меня зовут Иван, мне 22 года, я дизайнер. Мой электронный адрес des@test.ru также у меня есть свой сайт, вы можете посетить его набрав http://test.ru или www.test.ru"

Пропустить через регулярку и в исходе получить такой же текст, но уже ссылки с активным тегом <A> а почту с таким же тегом но с адресом mailto... + сделать targer="_blank"...

Вот нашел в интернете, но он не пашет на 100%...


<?
function clickable_link($text=''){
$text=preg_replace('#(script|about|applet|activex|chrome):#is',"\\1:",$text);
$ret=' '.$text;
$ret=preg_replace("#(^|[\n ])([\w]+?://[\w\#$%&~/.\-;:=,?@\[\]+]*)#is","\\1<a href=\"\\2\" target=\"_blank\">\\2</a>",$ret);
$ret=preg_replace("#(^|[\n ])((www|ftp)\.[\w\#$%&~/.\-;:=,?@\[\]+]*)#is","\\1<a href=\"http://\\2\" target=\"_blank\">\\2</a>",$ret);
$ret=preg_replace("#(^|[\n ])([a-z0-9&\-_.]+?)@([\w\-]+\.([\w\-\.]+\.)*[\w]+)#i","\\1<a href=\"mailto:\\2@\\3\">\\2@\\3</a>",$ret);
$ret=substr($ret,1);
return $ret;
}
?>

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
Вот нашел в интернете, но он не пашет на 100%..

Что мешает взять книжку и сделать самому?Зачем вы ищете правильные решения, не пытаясь решить самостоятельно?

Так или иначе вот вам на ссылки сделал,доменные имена только ру и ком, если захотите, легко сможете доделать:

 $stringMor = 'лолооло тут типа текст www.htmlbook.ru/jkjihuh.php/12asdgg=2641 тут  текст http://lololo.com/lolo.php?$get=2345';
$pattern = '/\w*(http:\/\/|www.)\w*.(ru|com)([^\s]*\b|\B)/';
$test = preg_replace($pattern, '<a href="\0">\0</a>', $stringMor);
echo $test;

Edited by moron
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy