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

一、概述

      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

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值