php查找、替换字符串中http地址的代码分享
程序员文章站
2022-05-21 19:40:54
...
本文介绍下,用php在指定字符串中查找http地址,并进行替换的一例代码,有需要的朋友参考下。
在字符串中查找、替换http地址,代码如下: 回复:$1',preg_replace("/\[(\d+)\]/", '',$str)); $reg="/http\:\/\/(\w+\.)+(net|com|org|cn|kr|jp|tw)[A-Za-z0-9_&\/\?=]*/i"; if(preg_match_all($reg,$str,$out)) { for($i=0;$i |