• Highlight


            <style type="text/css">
            .highlight 
    { FONT-WEIGHT: bold; BACKGROUND: blue; COLOR: white; TEXT-DECORATION: none }
            
    </style>

            private void Page_Load(object sender, System.EventArgs e)
            
    {
                
    // Put user code to initialize the page here
                lblTxt.Text = "Give the proper respect to hand-coding.You should both respect and loathe handwritten code. You should respect it because there are often special cases integrated into code that are overlooked with a cursory inspection. When replacing code you’ve written by hand, you need to make sure you have the special cases accounted for. You should loathe hand-code because engineering time is extremely valuable, and to waste it on repetitive tasks is nearly criminal. The goal of your generator should always be to optimize the organization’s most valuable assets.the creativity and enthusiasm of the engineering team."
            }


            
    private void btnSubmit_Click(object sender, System.EventArgs e)
            
    {
                lblTxt.Text 
    = ToHighlight(txtKeywords.Text, lblTxt.Text);        
            }

            public string ToHighlight(string strSearch, string txtContent) 
            

                Regex RegExp 
    = new Regex(strSearch.Replace(" ""|").Trim(), RegexOptions.IgnoreCase);
                
    return RegExp.Replace(txtContent, new MatchEvaluator(ReplaceKeyWords));             
            }


            
    public string ReplaceKeyWords(Match m) 
            
    {
                
    return "<span class=highlight>" + m.Value + "</span>"
            }
        
  • 相关阅读:
    ExtJS 使用点滴 四 XTemplate使用方法
    ExtJS 使用点滴 三 TreeGrid 单击事件侦听例子
    VS2008 引用App_Code下的类文件问题解决方法
    C# 文件操作类大全(转摘)
    SqlParameter数组
    ExtJS 使用点滴 二 如何使用XTemplate基于同行的其他列的值,改变当前列的显示样式
    ScriptManager.RegisterStartupScript方法
    ExtJS 使用点滴 一(XTemlpate)
    Jquery 远程调用 webService报错,500错误
    C# 调用数据库函数 转摘
  • 原文地址:https://www.cnblogs.com/xiaodi/p/381703.html
Copyright © 2020-2023  润新知