我正在尝试使用
PHP将用户的帖子(文本)转换为hashtag可点击链接.
原文链接:/php/240301.html$text = 'Testing#one #two #three.test'; $text = preg_replace('/#([0-9a-zA-Z]+)/i','<a href="/hashtag/$1">#$1</a>',$text);
它将链接放在所有(#one #two #three)上,但我认为#one不应该转换,因为它与另一个字母数字字符相邻,如何调整reg-ex来修复它?
第三个也没关系,它只匹配#three,我认为是正确的.