在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
。