[求助]连接跳转遇到了问题
str= re.Replace(str,"<a href=""$2"" >$3</a>")
<a href=""$2"" >
改为
<a href="url.asp?url= "$2"" > 同时把 "$2" 中的 &替换为!!
先替换再正则 代码应该怎么写
麻烦说清楚点可好,要不你就把代码帖全点
if instr(1,strContent,"[/url]",1)>0 then
re.Pattern="(\[URL\])(.[^\[]*)(\[\/URL\])"
strContent= re.Replace(strContent,"<a href=""$2"" >$2</a>")
re.Pattern="(\[URL=(.[^\]]*)\])(.[^\[]*)(\[\/URL\])"
strContent= re.Replace(strContent,"<a href=""$2"" >$3</a>")
end if
[此贴子已经被作者于2007-8-1 11:36:28编辑过]