博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#中搜索关键词高亮显示
阅读量:5037 次
发布时间:2019-06-12

本文共 1618 字,大约阅读时间需要 5 分钟。

在搜索关键词高亮中一般的方法都是采用替换的办法(Replace)这个方法有一个缺点就是不能区分大小写的问题。在网上找了找发现有人用正则表达式的方法来解决这个问题还真不错,效率也比较高,归纳如下,有用得到的朋友可以一试。

        //搜索关键词高亮显示函数         public static string HighLightKeyWord(string  pain,string keyword)         {

            //搜索关键词高亮函数By JN 2006.11.30              System.Text.RegularExpressions.MatchCollection m = Regex.Matches(pain, keyword,  RegexOptions.IgnoreCase);             //忽略大小写搜索字符串中的关键字             for  (int j = 0; j < m.Count; j++)//循环在匹配的子串前后插东东              {                 //j×31为插入html标签使pain字符串增加的长度:                 pain =  pain.Insert((m[j].Index + keyword.Length + j * 31),  "</font>");//关键字后插入html标签                 pain =  pain.Insert((m[j].Index + j * 31), "<font  color=#ff0000>");//关键字前插入html标签             }

            //搜索关键词高亮函数By JN 2006.11.30             return  pain;         }

当然用之前引用先:using System.Web.UI.HtmlControls;

还有:using System.Text.RegularExpressions;(小鱼加)

以上代码有问题:同一句中有多个关键字时出问题

试一下这个先

/// <summary>         /// 替换关键字为红色         ///  </summary>         /// <param  name="keycontent">原始内容</param>         /// <param  name="k">关键字,支持多关键字</param>         ///  <returns>String</returns>         /// <author>haver  Guo</author>         public static string Highlightkeywords(string  keycontent, string k)         {             string resultstr =  keycontent;             if (k.Trim().IndexOf(' ') >  0)             {                 string[] myArray = k.Split('  ');                 for (int i = 0; i < myArray.Length;  i++)                 {                     resultstr =  resultstr.Replace(myArray[i].ToString(), "<font color=#FF0000>" +  myArray[i].ToString() +  "</font>");                 }                 return  resultstr;             }             else             {                 return  resultstr.Replace(k, "<font color=#FF0000>" + k +  "</font>");             }         } 经测,可用

 

      public static string red(string theField, string fkeywords)

       
{
            string red;
            red = theField.Replace(fkeywords,
"<font color=\"red\">" + fkeywords + "</font>");
           
return red;
        }

转载于:https://www.cnblogs.com/cuihongyu3503319/archive/2013/01/15/2861875.html

你可能感兴趣的文章
unisynedit 在Delphi 2010下的编译问题
查看>>
每日定理3
查看>>
在公司就职时应该注意的事项
查看>>
springMVC整合jedis+redis
查看>>
Python基础之 一 文件操作
查看>>
java学习之switch 等值判断
查看>>
hdu5036 Explosion 传递闭包
查看>>
WinXP下由于图标造成的System.Windows.Markup.XamlParseException
查看>>
解决错误提示unable to invoke code completion due to errors in source cord.
查看>>
比较smart的一条分页存储过程
查看>>
POJ1979-Red and Black
查看>>
leetcode 数据库题解
查看>>
文件打开对话框
查看>>
install docker on centos7
查看>>
mysql 查询条件中文问题
查看>>
svn
查看>>
父组件操作子组件中的值,将父组件的值设置给子组件
查看>>
配置SQL Server 2005 以允许远程连接
查看>>
LSTM学习理解资料
查看>>
Callable与Runable接口 submit与execute区别
查看>>