好紧好爽的午夜寂寞视频-好看的中文字幕在线-和日本免费不卡在线v-黑人4p-黑人videodesexo极品-你懂的

ASP 去除 HTML 標記與空格的正則

關(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 標記與空格的正則

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

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