欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#获取关键字附近文字算法实例

程序员文章站 2023-11-16 23:25:34
本文实例讲述了c#获取关键字附近文字算法。分享给大家供大家参考。具体如下: 算法描述: 1.将文章以字符串的形式传入。 2.用正则表达式进行匹配。 3.在匹配中返回...

本文实例讲述了c#获取关键字附近文字算法。分享给大家供大家参考。具体如下:

算法描述:

1.将文章以字符串的形式传入。
2.用正则表达式进行匹配。
3.在匹配中返回关键字附近的文件。
4.知道匹配结束。

流程图如下:

C#获取关键字附近文字算法实例

public string getleng(string st)
{
  string s = "";
  int i = 1;
  string key = request.querystring["keyword"].tostring();
  regex reg = new regex(key);
  match mat = reg.match(st);
  while (mat.success)
  {
   if (mat.index - 15 > 0 && mat.index + 15 < st.length)
   {
    s = s + st.substring(mat.index - 15, 30);
    // messagebox.show(mat.index.tostring());//位置 
    mat = reg.match(st, mat.index + mat.length);
    // this.richtextbox2.appendtext(mat);
   }
   if (mat.index == 0)
   {
    // if (mat.index - 30 >= 0)
    //{ s = s + st.substring(0, 30);}
    //else
    // {
     s = s + st.substring(0, st.length);
    //}
   }
    if (mat.index == st.length - key.length)
   {
     s = s + st.substring(0, 30);
   }
  }
}

希望本文所述对大家的c#程序设计有所帮助。