在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對象,打印出匹配到的結果。