现在的位置: 首页 > 综合 > 正文

asp 去 html代码函数

2013年10月23日 ⁄ 综合 ⁄ 共 225字 ⁄ 字号 评论关闭

function nohtml(str)
    dim re
    Set re=new RegExp
    re.IgnoreCase =true
    re.Global=True
    re.Pattern="(<.[^<]*>)"
    str=re.replace(str," ")
    re.Pattern="(</[^<]*>)"
    str=re.replace(str," ")
    nohtml=str
    set re=nothing
end function

抱歉!评论已关闭.