在C#中,可以使用Regex類來匹配多個字符串。下面是一個示例代碼:
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string input = "Hello world! This is a test.";
string[] keywords = { "Hello", "world", "test" };
foreach (string keyword in keywords)
{
// 使用Regex類的靜態方法Match來進行匹配
Match match = Regex.Match(input, keyword);
if (match.Success)
{
Console.WriteLine("Found '{0}' at position {1}.", keyword, match.Index);
}
else
{
Console.WriteLine("'{0}' not found.", keyword);
}
}
}
}
輸出結果將會是:
Found 'Hello' at position 0.
Found 'world' at position 6.
Found 'test' at position 21.
在上面的示例中,我們定義了一個字符串數組keywords
,并通過循環,使用Regex.Match
方法來在輸入字符串input
中逐個匹配關鍵字。如果找到了匹配項,就會輸出關鍵字的位置;否則,輸出not found
。