中文有码在线视频_天天操天天淫天天干夜夜操_永久免费在线观看全网站_国产人妖高清一区二区

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 實(shí)現(xiàn)的去除內(nèi)容的 HTML 標(biāo)記和空格的實(shí)現(xiàn)代碼。

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