在C#中,可以使用Regex类来处理正则表达式和字符串匹配。以下是一个简单的示例:
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string input = "Hello, World!";
string pattern = @"\b\w+\b"; // 匹配单词
Regex regex = new Regex(pattern);
MatchCollection matches = regex.Matches(input);
foreach (Match match in matches)
{
Console.WriteLine(match.Value);
}
}
}
在上面的示例中,我们使用Regex类来创建一个正则表达式对象,并使用Matches方法来匹配输入字符串中符合正则表达式的部分。最后,我们遍历MatchCollection对象,打印出匹配到的结果。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: c# socket编程如何处理异常