利用C#编程计算某个字符在某个字符串中出现的次数【转】
2021/8/2 11:07:15
本文主要是介绍利用C#编程计算某个字符在某个字符串中出现的次数【转】,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
一、利用Replace(效率不高)
代码1:
string test = "good good study day day up";
string r = test.Replace("oo", "");
int num = (test.Length - r.Length)/2;
Console.WriteLine(num);
test = "good good study day day up";
r = test.Replace("o", "");
num = (test.Length - r.Length);
Console.WriteLine(num);
二、利用Split(效率最低)
test = "good good study day day up";
int i = test.Split('d').Length - 1;
代码3:
test = "good good study day day up";
int a = test.Split(new string[] { "oo" }, StringSplitOptions.None).Length - 1;
三、利用循环(效率高)
int c2 = 0;
for (int i = 0; i < test .Length; i++)
{
if (test [i] == 'a')
{
c2++;
}
}
四、利用正则表达式
Regex rege = new Regex("o", RegexOptions.Compiled);
int count = rege.Matches(test).Count;
五、高效查找字符串出现次数
string str = "fecvcsdwfchkeov[page]ove283673ewekl[page]fsdh5d37op"; //被查的字符串
int count = 0; //计数器
string search = "[page]"; //要查的字符串
for (int i = 0; i < str.Length - search.Length; i++)
{
if (str.Substring(i, search.Length) == search)
{
count++;
}
}
六、IndexOf、While查找
string text = "今天下雪了吗,明天不会下雪了吧,什么时候才不下雪啊,我要去上学啊!";
string keyWord = "下雪";
int index = 0;
int count = 0;
while ((index = text.IndexOf(keyWord,index)) != -1)
{
count++;
Console.WriteLine("第{0}次;索引是{1}", count, index);
index = index + keyWord.Length;
}
Console.WriteLine("下雪出现的总次数:{0}", count);
七、foreach
int count;
string str="abcbabcbabbcabbabcccc";
foreach(char s in str)
{
if(s=="a")
{
count++;
}
}
console.write(count.tostring());
这篇关于利用C#编程计算某个字符在某个字符串中出现的次数【转】的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#