小结及任务实施
Posted 前缘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小结及任务实施相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; using System.Collections; namespace _17._11本章小结及任务实施 { class Program { static void Main(string[] args) { string str = "我爱你,我的中国。我喜欢我要自学网"; string pattern = @"[^\u4e00-\u9fa5]"; Regex regex = new Regex(pattern); string chnstr = regex.Replace(str, "");//替换非中文字符 Hashtable ht = new Hashtable(); for(int i=0; i < chnstr.Length; i++) { int val = 1; if (ht.ContainsKey(chnstr[i])) { val = Convert.ToInt32(ht[chnstr[i]]); ++val; } ht[chnstr[i]] = val; } Console.WriteLine("原有的字符串是:" + str); Console.WriteLine("修剪后的字符串是:"+chnstr); foreach (DictionaryEntry de in ht) { Console.WriteLine("{0}----------{1}", de.Key, de.Value); } Console.Read(); } } }
以上是关于小结及任务实施的主要内容,如果未能解决你的问题,请参考以下文章