Linux 拨号vps windows公众号手机端

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

lewis 9年前 (2017-01-30) 阅读数 12 #程序编程
文章标签 c#

在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

版权声明

本文仅代表作者观点,不代表米安网络立场。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

热门