首页 > Windows开发 > 详细

C#:统计字符串中每个字符的个数

时间:2017-12-26 00:25:26      阅读:691      评论:0      收藏:0      [点我收藏+]

具体代码如下:

 1 namespace demo
 2 {
 3     public class Program
 4     {
 5         static void Main(string[] args)
 6         {
 7             string str = "hi,good morning.";
 8             Console.WriteLine($"字符串:{str}");
 9             Dictionary<char, int> dic = Count(str);
10             foreach(var c in dic)            
11                 Console.WriteLine($" ‘{c.Key}‘:{c.Value}");            
12             Console.ReadKey();
13         }
14         static Dictionary<char,int> Count(string str)
15         {
16             Dictionary<char, int> dic = new Dictionary<char, int>();
17             char[] chars = str.ToArray();
18             foreach(char c in chars)
19             {
20                 if (dic.ContainsKey(c))
21                     dic[c]++;
22                 else
23                     dic.Add(c, 1);
24             }
25             return dic;
26         }
27     }
28 }

执行结果:
技术分享图片

C#:统计字符串中每个字符的个数

原文:https://www.cnblogs.com/ecake/p/8111614.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!