主页 > 知识库 > Highlight patterns within strings

Highlight patterns within strings

热门标签:常用地图标注范围点 离线电子地图标注软件注册 为什么外呼系统需要预存话费呢 外呼回拨系统图片 咸阳销售外呼系统 办理400电话一年多少钱 宁夏怎么申请400电话 企数外呼系统能用多久 兰州智能语音电销机器人功能

复制代码 代码如下:

'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

标签:昌都 泰州 咸阳 丽江 温州 家电维修 铁岭 昆明

巨人网络通讯声明:本文标题《Highlight patterns within strings》,本文关键词  Highlight,patterns,within,strings,;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 下面列出与本文章《Highlight patterns within strings》相关的同类信息!
  • 本页收集关于Highlight patterns within strings的相关信息资讯供网民参考!
  • 推荐文章