[問題] PHP preg_replace 的問題
看板RegExp (正規表示式 Regular Expression)作者KC73 (肯先生)時間11年前 (2014/01/06 21:40)推噓2(2推 0噓 5→)留言7則, 2人參與討論串1/1
各位好:
使用的是 PHP 5.3.27,要抓出文中的以 http 開頭的連結,但是如果 http 前面是 ],
就不抓:
$text = <<<EOT
12345http://www.google.com
http://www.google.com
]http://www.google.com
EOT;
echo preg_replace("![^\]](https?:/{2}[\w\.]{2,}[/\w\-\.\?\&\=\#\~\%]*)!i",
"<a href=\"$1\" title=\"$1\" target=\"_blank\">$1</a>", $text);
結果:
1234<a href="http://www.google.com" title="http://www.google.com"
target="_blank">http://www.google.com</a><a href="http://www.google.com"
title="http://www.google.com" target="_blank">http://www.google.com</a>
]http://www.google.com
第一行的「12345http://www.google.com」的「5」被吃掉了,不知為何?
謝謝~
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 123.192.161.248
推
01/06 21:43, , 1F
01/06 21:43, 1F
→
01/06 21:44, , 2F
01/06 21:44, 2F
→
01/06 21:44, , 3F
01/06 21:44, 3F
→
01/06 21:44, , 4F
01/06 21:44, 4F
推
01/06 21:47, , 5F
01/06 21:47, 5F
→
01/06 21:47, , 6F
01/06 21:47, 6F
→
01/06 21:48, , 7F
01/06 21:48, 7F
原來那麼簡單~真謝謝前輩的指引。
$text = <<<EOT
中文http://www.google.com
12345http://www.google.com
http://www.google.com
]http://www.google.com
EOT;
echo preg_replace("!([^\]])(https?:/{2}[\w\.]{2,}[/\w\-\.\?\&\=\#\~\%]*)!i",
"$1<a href=\"$2\" title=\"$2\" target=\"_blank\">$2</a>",$text);
執行結果:
中文<a href="http://www.google.com" title="http://www.google.com"
target="_blank">http://www.google.com</a>
12345<a href="http://www.google.com" title="http://www.google.com"
target="_blank">http://www.google.com</a>
<a href="http://www.google.com" title="http://www.google.com"
target="_blank">http://www.google.com</a>
]http://www.google.com
※ 編輯: KC73 來自: 123.192.161.248 (01/06 23:29)
RegExp 近期熱門文章
PTT數位生活區 即時熱門文章