开发者网络 动网主机 支持论坛 邮局 帮助
当前位置:网络学院ASP技术ASP技巧 → 实现搜索结果的关键词变色标注的程序
实现搜索结果的关键词变色标注的程序
日期:2003年8月14日 作者:飞鸟 人气:     [ ]
<%
' 以前写全文检索程序的时候写的.
' 原创 by 飞鸟@dev-club.com
' Email: flybird@dev-club.com
' ie5.5 脚本引擎 required

  dim patern
  dim found
  
  dim str
  dim result
  
  patern="(a)|(b)"
  str=" A dog fall in love with a cat. Can you believe?"
  result=""  
  call getMatchText(str,result,false)
  Response.Write result

  sub getMatchText(byref str,byref result,isNeedTrunc)
    'on error resume next
    Dim regEx, Match, Matches
    dim tStr
    Set regEx = New RegExp     ' 建立正则表达式。    
    regEx.Pattern = (patern)  ' 设置模式。
    regEx.IgnoreCase = True     ' 设置是否区分字符大小写。
    regEx.Global = True     ' 设置全局可用性。
    Set Matches = regEx.Execute(str)  ' 执行搜索。  
    if err.number<>0 then
      response.write "错误1:" & err.description
      err.clear
      exit sub
    end if
    if matches.count <>0 then
      dim startIndex      
      dim myMatchValue
      startIndex=1
      for each match in matches
        if (instr(str,match.value)>0) then
          if instr(str,match.value)-50 >0 then
            startIndex=instr(str,match.value)-50
          else
            startIndex=1
          end if
          myMatchValue=match.value
          exit for
        end if
      next
      if isNeedTrunc then
        result= (mid(str,startIndex,strLength(myMatchValue)+100))
      else
        result= (str)  
      end if
      for each match in matches
        if not(instr(result,"<font color=red>" & match.value & "</font>")>0) then
          result=replace(result,match.value,"<font color=red>" & match.value & "</font>" )
        end if
      next
      found=true
    else
      found=false
    end if  
    set regEx=nothing
  end sub
  
%>

(出处:开发者俱乐部)

相关文章:
 
·Sql Server全文搜索中文出错的问题
·微软和海量科技强强合作 推企业搜索引擎新方案
·微软的站点搜索引擎内幕 (zt)
·实现支持逻辑搜索/单词搜索/词组搜索+支持OR/AND关键字的VBS CLASS
·ASP编写完整的一个IP所在地搜索类
·一个很酷的程序JavaScript做的MID歌曲搜索播放器[IE](JS)
·利用索引服务(Indexing Service)和ASP建立面向整个网站搜索程序
·用asp怎样编写文档搜索页面(6)
·用asp怎样编写文档搜索页面(5)
·用asp怎样编写文档搜索页面(4)
相关软件:
 
·K风搜索(K-Search) v2.1
·金梅全球博客搜索引擎
·搜搜搜软件搜索引擎 v1.3
·仙吻百度搜索小偷 v1.10
·So165音乐搜索 v1.0
·FTP Web浏览搜索引擎(asp) v1.0 RC2
·Flash综合搜索引擎
·顺新站内搜索引擎 v1.2(百度网页搜索小偷)
·蓝色空间站内搜索引擎
·MOMOMAN搜索第一版
说明:本站部分内容收集于网络,如有侵犯您的权益请来信告知,我们会第一时间进行处理,谢谢
 → 特别推荐
 → 热点TOP10

关于本站 | 诚聘英才 | 业务合作 | 联系我们 | 广告合作 | 收藏本站

海口动网先锋网络科技有限公司版权所有
Copyright ? 2000 - 2003 AspSky.Net
中华人民共和国电信与信息服务业务经营许可证编号 琼 ICP 020077