gpt4 book ai didi

C# 搜索字符串中出现的单词

转载 作者:行者123 更新时间:2023-11-30 21:02:11 25 4
gpt4 key购买 nike

如何在字符串中搜索单词?我有一个文本框,用户可以在其中插入一个字符串,而另一个文本框则带有一些随机文本。除了使用 regexIndexOf 之外,还有其他替代方法吗?就像使用 for 循环 并检查单词的长度和字符。

这是我目前尝试过的

        int i = 0; 
int count = 0;

input2.Trim();

while ((i = input2.IndexOf(input1, i)) != -1)
{
i = i + input1.Length;
count++;
}

MessageBox.Show(count.ToString() + " Matches Found");

最佳答案

看起来您想获取文本中搜索字符串的计数。您可以尝试以下操作。

string searchString = "TEST";
string completeText = "Some sentence TEST with other words incluing TEST";
int count = completeText.Split(new string[]{"TEST"},StringSplitOptions.None)
.Count() - 1;
MessageBox.Show(count.ToString() + " Matches Found");

关于C# 搜索字符串中出现的单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13682214/

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