美文网首页VB源代码
VB去除HTML标签函数

VB去除HTML标签函数

作者: 因思道客 | 来源:发表于2018-09-21 08:33 被阅读0次

    VB使用正则表达式实现去除HTML标签函数,适用于网抓。

    Function nohtml(str As String) As String

        Dim re

        Set re = CreateObject("VBScript.RegExp")

        re.IgnoreCase = True

        re.Global = True

        re.Pattern = "(\<.[^\<]*\>)"

        str = re.Replace(str, "")

        re.Pattern = "(\<\/[^\<]*\>)"

        str = re.Replace(str, "")'去除html标签

        str = Replace(str, Chr(10), "")'去除换行

        str = Replace(str, Chr(13), "")'去除回车

        nohtml = str

        Set re = Nothing

    End Function

    相关文章

      网友评论

        本文标题:VB去除HTML标签函数

        本文链接:https://www.haomeiwen.com/subject/peaonftx.html