该方法匹配模式实例,并用于基于模式提取值。
让我们看看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