x.C-6ren">
gpt4 book ai didi

c# - 使用 linq 来计算字符串中的子字符串?

转载 作者:太空狗 更新时间:2023-10-29 23:09:57 26 4
gpt4 key购买 nike

我可以使用以下 linq 表达式来计算单词出现的次数,如下所示:

string test = "And And And";
int j = test.Split(' ').Count(x => x.Contains("And"));

但是,如果我正在搜索“And And”,有没有一种方法可以在不使用 split 的情况下使用 linq 来计算单词数?这些方法中的任何一种都需要更长的时间 O(n) 吗?

最佳答案

您可以使用正则表达式:

string test = "And And And";
int j = Regex.Matches(test, "And").Cast<Match>().Count();

顺便说一句,你想允许重叠出现吗?即,如果您正在寻找“And And”,您是否认为 test 包含它的 1 次或 2 次出现?

关于c# - 使用 linq 来计算字符串中的子字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9144169/

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