c#中怎么用regex匹配多个字符串

   2024-11-05 9090
核心提示:在C#中,可以使用Regex类来匹配多个字符串。下面是一个示例代码:using System;using System.Text.RegularExpressions;class Pro

在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

 
举报打赏
 
更多>同类维修大全
推荐图文
推荐维修大全
点击排行

网站首页  |  关于我们  |  联系方式网站留言    |  赣ICP备2021007278号