• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    Highlight patterns within strings

    复制代码 代码如下:

    'Replaces pattern with highlighted replacement (using style) and preserves case  
    Public Function highlight(strText, strFind)  
        Dim objRegExp, i, strHighlight  

        'Split the search terms into an array  
        Dim arrFind  
        arrFind = Split(strFind, " ")  

        'Initialize the regular expression object to perfom the search  
        Dim oMatches, sMatch  
        Set oregExp = New RegExp  

        oregExp.Global = True 'Returns all matches to the search term  
        oregExp.IgnoreCase = True 'Case insensitive  

        'Loop through the array of search terms to find matches  
        For i = 0 to UBound(arrFind)  
            oregExp.Pattern = arrFind(i) 'Sets the search pattern string  
            Set oMatches = oregExp.Execute(strText) '// performs the search   
            for each match in oMatches  
                'Build the code to be used to highlight results  
                strHighlight = "span class=""highlight"">"  match.value  "/span>"  
            next  
            'Replace matches from the search with the above code  
            strText = oregExp.Replace(strText, strHighlight)  
         Next  

        highlight = strText  

        Set objRegExp = Nothing  
    End Function

    上一篇:asp下DateDiff 函数参数说明
    下一篇:Insert Date and Time into Access
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    Highlight patterns within strings Highlight,patterns,within,strings,