正则表达式虽然能匹配字符串,但……
有了!用$1
比如匹配到了http://tieba.blue.cat/post.php?i=7636,则自动替换为<a href="http://tieba.blue.cat/post.php?i=7636" target="_blank">http://tieba.blue.cat/post.php?i=7636</a>
用<a href="$1" target="_blank">$1</a>就行了。
$1表示匹配得到的url
回复:5楼
貌似还没自动变成链接的说。。。