在C#中,您可以使用Regex類來進行字符串匹配操作。下面是一個簡單的示例,演示如何使用Regex類來在字符串中查找匹配的內容:
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string input = "Hello, my email address is test@test.com";
string pattern = @"\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b";
Regex regex = new Regex(pattern);
MatchCollection matches = regex.Matches(input);
foreach (Match match in matches)
{
Console.WriteLine(match.Value);
}
}
}
在上面的示例中,我們首先定義了一個要匹配的字符串input和一個正則表達式模式pattern,該模式用于匹配電子郵件地址。然后我們使用Regex類創建了一個正則表達式對象regex,并調用它的Matches方法來找到輸入字符串中所有匹配的內容。最后,我們遍歷匹配集合并打印出匹配的結果。