为什么Regex会变空?

时间:2018-01-22 13:42:44

标签: php regex preg-replace

我已经编写了这些代码来将类似url的文本转换为超链接:

$reg_exUrl = "/(http|https|ftp|ftps)\:\/\/www\.[a-zA-Z0-9]{5}\.com(\w*)(\/\S*)?/";
echo preg_replace($reg_exUrl, '<a href="$1://www.$2.com">$1://www.$2.com$3</a>','http://www.abcde.com/index.html');

输出是:

<a href="http://www..com">http://www..com/index.html</a>

但是2美元是空的,我不知道原因。

你会帮我吗?

谢谢。

1 个答案:

答案 0 :(得分:-2)

我想你想要这样的东西:

(http|https|ftp|ftps)\:\/\/www\.([a-zA-Z0-9]{5})\.com(\w*\/\S*)?

https://regex101.com/r/MJ3A6K/1