当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


C# Regex.Matches用法及代码示例


该方法匹配模式的实例,用于根据模式提取值。

让我们看看 hoe 来检查一个有效的 URL。

为此,在 Matches 方法中传递正则表达式。

MatchCollection mc = Regex.Matches(text, expr);

上面的 expr 是我们设置用来检查有效 URL 的表达式。

"^(http|http(s)?://)?([\w-]+\.)+[\w-]+[.com|.in|.org]+(\[\?%&=]*)?”

我们设置要检查的文本是一个 URL,即

https://demo.com

让我们看看完整的代码。

示例

using System;
using System.Text.RegularExpressions;
namespace Demo {
   class Program {
      private static void showMatch(string text, string expr) {
         MatchCollection mc = Regex.Matches(text, expr);
         foreach (Match m in mc) {
            Console.WriteLine(m);
         }
      }
      static void Main(string[] args) {
         string str = "https://demo.com";
         Console.WriteLine("Matching URL...");
         showMatch(str, @"^(http|http(s)?://)?([\w-]+\.)+[\w-]+[.com|.in|.org]+(\[\?%&=]*)?");
         Console.ReadKey();
      }
   }
}

输出

Matching URL...
https://demo.com

相关用法


注:本文由纯净天空筛选整理自Samual Sam大神的英文原创作品 C# Regex. Matches Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。