在C#中,可以使用正则表达式(Regex)来查找以$开头的单词。以下是一个示例代码:
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
对象,并输出每个匹配的字符串。
领取专属 10元无门槛券
手把手带您无忧上云