主頁 > 知識庫 > 去除HTML代碼中所有標簽的兩種方法

去除HTML代碼中所有標簽的兩種方法

熱門標簽:福建外呼增值業(yè)務(wù)線路 伊春外呼業(yè)務(wù)系統(tǒng) 電銷機器人源碼網(wǎng)盤下載 宜賓語音外呼系統(tǒng)軟件 調(diào)度系統(tǒng)外呼 綿陽防封電銷卡價格 電銷機器人教育 河北智能外呼系統(tǒng)軟件 中國辦理電信400電話
去除HTML代碼中所有標簽
復(fù)制代碼 代碼如下:

%
'******************************
'函數(shù):RemoveHTML_A(strText)
'參數(shù):strText,待處理的字符串
'作者:阿里西西
'日期:2007/7/12
'描述:去除HTML代碼中所有標簽
'示例:%=RemoveHTML_A("b>歡迎光臨阿里西西/b>")%>
'******************************
Function RemoveHTML_A(strText)
    Dim nPos1
    Dim nPos2

    nPos1 = InStr(strText, "") 
    Do While nPos1>0 
        nPos2 = InStr(nPos1+1, strText, ">") 
        If nPos2>0 Then 
            strText = Left(strText, nPos1 - 1)  Mid(strText, nPos2 + 1) 
        Else 
            Exit Do 
        End If 
        nPos1 = InStr(strText, "") 
    Loop 

    RemoveHTML_A = strText 
End Function
%>

去除HTML代碼中所有標簽之二
復(fù)制代碼 代碼如下:


'****************************** 
'函數(shù):RemoveHTML_B(strText) 
'參數(shù):strText,待處理的字符串 
'作者:阿里西西 
'日期:2007/7/12 
'描述:去除HTML代碼中所有標簽 
'示例:%=RemoveHTML_B("b>歡迎光臨阿里西西/b>")%> 
'****************************** 
Function RemoveHTML_B( strText ) 
 Dim RegEx 

 Set RegEx = New RegExp 

 RegEx.Pattern = "[^>]*>" 
 RegEx.Global = True 

 RemoveHTML_B = RegEx.Replace(strText, "") 
End Function 
%> 

去除HTML代碼中所有標簽之三
復(fù)制代碼 代碼如下:

%
'******************************
'函數(shù):RemoveHTML_C(strText)
'參數(shù):strText,待處理的字符串
'作者:阿里西西
'日期:2007/7/12
'描述:去除HTML代碼中所有標簽
'示例:%=RemoveHTML_C("b>歡迎光臨阿里西西/b>")%>
'******************************
Function RemoveHTML_C( strText )
    Dim TAGLIST
    TAGLIST = ";!--;!DOCTYPE;A;ACRONYM;ADDRESS;APPLET;AREA;B;BASE;BASEFONT;" _
              "BGSOUND;BIG;BLOCKQUOTE;BODY;BR;BUTTON;CAPTION;CENTER;CITE;CODE;" _
              "COL;COLGROUP;COMMENT;DD;DEL;DFN;DIR;DIV;DL;DT;EM;EMBED;FIELDSET;" _
              "FONT;FORM;FRAME;FRAMESET;HEAD;H1;H2;H3;H4;H5;H6;HR;HTML;I;IFRAME;IMG;" _
              "INPUT;INS;ISINDEX;KBD;LABEL;LAYER;LAGEND;LI;LINK;LISTING;MAP;MARQUEE;" _
              "MENU;META;NOBR;NOFRAMES;NOSCRIPT;OBJECT;OL;OPTION;P;PARAM;PLAINTEXT;" _
              "PRE;Q;S;SAMP;SCRIPT;SELECT;SMALL;SPAN;STRIKE;STRONG;STYLE;SUB;SUP;" _
              "TABLE;TBODY;TD;TEXTAREA;TFOOT;TH;THEAD;TITLE;TR;TT;U;UL;VAR;WBR;XMP;"

    Const BLOCKTAGLIST = ";APPLET;EMBED;FRAMESET;HEAD;NOFRAMES;NOSCRIPT;OBJECT;SCRIPT;STYLE;"

    Dim nPos1
    Dim nPos2
    Dim nPos3
    Dim strResult
    Dim strTagName
    Dim bRemove
    Dim bSearchForBlock

    nPos1 = InStr(strText, "")
    Do While nPos1 > 0
        nPos2 = InStr(nPos1 + 1, strText, ">")
        If nPos2 > 0 Then
            strTagName = Mid(strText, nPos1 + 1, nPos2 - nPos1 - 1)
     strTagName = Replace(Replace(strTagName, vbCr, " "), vbLf, " ")

            nPos3 = InStr(strTagName, " ")
            If nPos3 > 0 Then
                strTagName = Left(strTagName, nPos3 - 1)
            End If

            If Left(strTagName, 1) = "/" Then
                strTagName = Mid(strTagName, 2)
                bSearchForBlock = False
            Else
                bSearchForBlock = True
            End If

            If InStr(1, TAGLIST, ";"  strTagName  ";", vbTextCompare) > 0 Then
                bRemove = True
                If bSearchForBlock Then
                    If InStr(1, BLOCKTAGLIST, ";"  strTagName  ";", vbTextCompare) > 0 Then
                        nPos2 = Len(strText)
                        nPos3 = InStr(nPos1 + 1, strText, "/"  strTagName, vbTextCompare)
                        If nPos3 > 0 Then
                            nPos3 = InStr(nPos3 + 1, strText, ">")
                        End If

                        If nPos3 > 0 Then
                            nPos2 = nPos3
                        End If
                    End If
                End If
            Else
                bRemove = False
            End If

            If bRemove Then
                strResult = strResult  Left(strText, nPos1 - 1)
                strText = Mid(strText, nPos2 + 1)
            Else
                strResult = strResult  Left(strText, nPos1)
                strText = Mid(strText, nPos1 + 1)
            End If
        Else
            strResult = strResult  strText
            strText = ""
        End If

        nPos1 = InStr(strText, "")
    Loop
    strResult = strResult  strText

    RemoveHTML_C = strResult
End Function
%>
您可能感興趣的文章:
  • asp中去除html中style,javascript,css代碼
  • HTA文件去除html控件認證和接收命令行參數(shù)
  • asp.ne去除html的函數(shù)代碼
  • asp去除html標記與空格的正則
  • 截字符串 去除HTML標記
  • asp去除html的函數(shù)代碼分析附實例說明

標簽:新鄉(xiāng) 銅川 延邊 那曲 河池 蘇州 電商邀評 優(yōu)質(zhì)小號

巨人網(wǎng)絡(luò)通訊聲明:本文標題《去除HTML代碼中所有標簽的兩種方法》,本文關(guān)鍵詞  去除,HTML,代碼,中,所有,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《去除HTML代碼中所有標簽的兩種方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于去除HTML代碼中所有標簽的兩種方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章