黄图在线观看无码_亚洲va久久久噜噜噜久久男同_国产精品无码h_97人妻免费专区

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

關(guān)鍵詞:
日期:2011年7月10日 來(lái)源:佰科
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 實(shí)現(xiàn)的去除內(nèi)容的 HTML 標(biāo)記和空格的實(shí)現(xiàn)代碼。

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