ASP.net: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;

原文地址:https://www.cnblogs.com/ymyglhb/p/1263520.html