gpt4 book ai didi

c# - 在字符串中查找字符串的出现

转载 作者:太空宇宙 更新时间:2023-11-03 22:13:33 24 4
gpt4 key购买 nike

在另一个字符串中查找一个字符串的最快和最有效的方法是什么。

比如我有这段文字;

"Hey @ronald and @tom where are we going this weekend"

但是我想找到以“@”开头的字符串。

最佳答案

您可以使用正则表达式。

string test = "Hey @ronald and @tom where are we going this weekend";

Regex regex = new Regex(@"@[\S]+");
MatchCollection matches = regex.Matches(test);

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

这将输出:

@ronald
@tom

关于c# - 在字符串中查找字符串的出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5840979/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com