日期:2014-05-16 浏览次数:20999 次
MyString="一群喧闹<a href=""http://www.baidu.com"">百度</a>来到了的<a href=""#"">大学生</a>人"
set rx=new regexp
rx.ignorecase=true
rx.global=true
rx.pattern="<a[^>]+>百度</a>"
MyString=rx.replace(MyString,"百度")
set rx=nothing
response.write MyString
MyString="一群喧闹<a href=""http://www.baidu.com"">百度</a>来到了的<a href=""#"">大学生</a>人"
MyString=replace(MyString, "<a href=""http://www.baidu.com"">百度</a>","百度")