首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

查找严格以$开头的单词,Regex C#

在C#中,可以使用正则表达式(Regex)来查找以$开头的单词。以下是一个示例代码:

代码语言:csharp
复制
using System;
using System.Text.RegularExpressions;

class Program
{
    static void Main(string[] args)
    {
        string input = "$hello $world $regex";
        string pattern = @"\$\w+";

        MatchCollection matches = Regex.Matches(input, pattern);

        foreach (Match match in matches)
        {
            Console.WriteLine(match.Value);
        }
    }
}

在这个示例中,我们使用了正则表达式\$\w+来匹配以$开头的单词。\$表示匹配$字符,\w表示匹配任何字母数字字符,+表示匹配一个或多个字符。Regex.Matches方法返回一个MatchCollection对象,其中包含所有匹配的字符串。我们可以使用foreach循环遍历MatchCollection对象,并输出每个匹配的字符串。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券