Regex.Match 方法 中应该注意的几个问题

来源:互联网 发布:警惕网络陷阱的手抄报 编辑:程序博客网 时间:2024/05/22 00:10

一、概述

      Regex.Match 方法

      在输入字符串中搜索正则表达式的匹配项,并将精确结果作为单个 Match 对象返回。

      重载列表
      (1) 在指定的输入字符串中搜索 Regex 构造函数中指定的正则表达式匹配项。

                 [C#] public Match Match(string);

     (2) 从指定的输入字符串起始位置开始在输入字符串中搜索正则表达式匹配项。

               [C#] public Match Match(string, int);

     (3) 在指定的输入字符串中搜索 pattern 参数中提供的正则表达式的匹配项。

              [C#] public static Match Match(string, string);

     (4)   从指定的输入字符串起始位置开始在输入字符串中搜索具有指定输入字符串长度的正则表达式匹配项。

           [C#] public Match Match(string, int, int);

   (5)    在输入字符串中搜索 pattern 参数中提供的正则表达式的匹配项(匹配选项在 options 参数中提供)。

          [C#] public static Match Match(string, string, RegexOptions);

二、应用举例

   1.下面的代码是为了取出网页中的Title属性

        Match TitleMatch = Regex.Match(fileContents, "<title>([^<]*)</title>", RegexOptions.IgnoreCase | RegexOptions.Multiline );

        filetitle = TitleMatch.Groups[1].Value;

     注意红色的1, Regex.Match方法得到的Groups的索引是从1开始的,而不是从0开始的

 2. 下面的代码是为了取出网页头部的"Content"属性

              Match DescriptionMatch = Regex.Match( fileContents, "<META NAME=/"DESCRIPTION/" CONTENT=/"([^<]*)/">", RegexOptions.IgnoreCase | RegexOptions.Multiline );
              filedesc = DescriptionMatch.Groups[1].Value;

3. 下面的代码用来分解一个字符串

  string text = "One car red car blue car";
  string pat = @"(/w+)/s+(car)";
  // Compile the regular expression.
  Regex r = new Regex(pat, RegexOptions.IgnoreCase);
  // Match the regular expression pattern against a text string.
  Match m = r.Match(text);
  int matchCount = 0;
  while (m.Success)
  {
   Response.Write("Match"+ (++matchCount) + "<br>");
   for (int i = 1; i <= 2; i++)
   {
    Group g = m.Groups[i];
    Response.Write("Group"+i+"='" + g + "'"  + "<br>" );
    CaptureCollection cc = g.Captures;
    for (int j = 0; j < cc.Count; j++)
    {
     Capture c = cc[j];
     Response.Write("Capture"+j+"='" + c + "', Position="+c.Index  + "<br>");
    }
   }
   m = m.NextMatch();
  }

运行结果如下:

Match1
Group1='One'
Capture0='One', Position=0
Group2='car'
Capture0='car', Position=4
Match2
Group1='red'
Capture0='red', Position=8
Group2='car'
Capture0='car', Position=12
Match3
Group1='blue'
Capture0='blue', Position=16
Group2='car'
Capture0='car', Position=21

原创粉丝点击