在C#中使用正則表達式,可以通過System.Text.RegularExpressions命名空間中的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類來匹配輸入字符串中的單詞,并將匹配到的單詞打印出來。在實際使用時,可以根據需要編寫特定的正則表達式模式來匹配不同的字符串模式。