韩国三级片一区二区_国语无码福利视频_久久悠悠色综合视频_A级国产大片在线免费观看

ASP 去除 HTML 標(biāo)記與空格的正則

關(guān)鍵詞:
日期:2011年7月10日 來源:佰科
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," ")
    str = replace(str," ","")
    str = replace(str," ","")
    nohtml = str
    set re = nothing
end function

ASP 去除 HTML 標(biāo)記與空格的正則

用 ASP 實現(xiàn)的去除內(nèi)容的 HTML 標(biāo)記和空格的實現(xiàn)代碼。

打印本頁〗 〖返回上一頁〗 〖關(guān)閉本頁