使用 PHP 将正则表达式替换为正则表达式
我想用相同的哈希标签替换字符串中的哈希标签,但是在添加链接之后
例:
$text = "any word here related to #English must #be replaced."
我想将每个 # 标签替换为
#English ---> <a href="bla bla">#English</a>
#be ---> <a href="bla bla">#be</a>
所以输出应该是这样的:
$text = "any word here related to <a href="bla bla">#English</a> must <a href="bla bla">#be</a> replaced."