C#中怎么判斷單詞的個數,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。
創新互聯從2013年創立,是專業互聯網技術服務公司,擁有項目成都網站設計、做網站網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元全椒做網站,已為上家服務,為全椒各地企業和個人服務,聯系電話:13518219792方法一:
判斷英文單詞個數:
using System; namespace FindWord { class Program { static void Main(string[] args) { string space = " "; string str = "hello world" + space; int count = 0; bool start = false; for (int i=0;i<str.Length;i++) { if (Char .IsLetter(str[i])) { start = true; } if (!Char.IsLetter(str[i])&&start) { count++; start = false; } } Console.WriteLine(count); Console.ReadLine(); } } }
方法二:
C#統計英文字符串中單詞個數思路如下:
1.使用的Hashtable(高效)集合,記錄每個單詞出現的次數
2.采用ArrayList對Hashtable中的Keys按字母序排列
3.排序使用插入排序(穩定)
public void StatisticsWords(string path) { if (!File.Exists(path)) { Console.WriteLine("文件不存在!"); return; } Hashtable ht = new Hashtable(StringComparer.OrdinalIgnoreCase); StreamReader sr = new StreamReader(path, System.Text.Encoding.UTF8); string line = sr.ReadLine(); string[] wordArr = null; int num = 0; while (line.Length > 0) { // MatchCollection mc = Regex.Matches(line, @"\b[a-z]+", RegexOptions.Compiled | RegexOptions.IgnoreCase); //foreach (Match m in mc) //{ // if (ht.ContainsKey(m.Value)) // { // num = Convert.ToInt32(ht[m.Value]) + 1; // ht[m.Value] = num; // } // else // { // ht.Add(m.Value, 1); // } //} //line = sr.ReadLine(); wordArr = line.Split(' '); foreach (string s in wordArr) { if (s.Length == 0) continue; //去除標點 line = Regex.Replace(line, @"[\p{P}*]", "", RegexOptions.Compiled); //將單詞加入哈希表 if (ht.ContainsKey(s)) { num = Convert.ToInt32(ht[s]) + 1; ht[s] = num; } else { ht.Add(s, 1); } } line = sr.ReadLine(); } ArrayList keysList = new ArrayList(ht.Keys); //對Hashtable中的Keys按字母序排列 keysList.Sort(); //按次數進行插入排序【穩定排序】,所以相同次數的單詞依舊是字母序 string tmp = String.Empty; int valueTmp = 0; for (int i = 1; i < keysList.Count; i++) { tmp = keysList[i].ToString(); valueTmp = (int)ht[keysList[i]];//次數 int j = i; while (j > 0 && valueTmp > (int)ht[keysList[j - 1]]) { keysList[j] = keysList[j - 1]; j--; } keysList[j] = tmp;//j=0 } //打印出來 foreach (object item in keysList) { Console.WriteLine((string)item + ":" + (string)ht[item]); } }
看完上述內容,你們掌握C#中怎么判斷單詞的個數的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注創新互聯成都做網站行業資訊頻道,感謝各位的閱讀!
另外有需要云服務器可以了解下創新互聯scvps.cn,海內外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業上云的綜合解決方案,具有“安全穩定、簡單易用、服務可用性高、性價比高”等特點與優勢,專為企業上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
分享標題:C#中怎么判斷單詞的個數-創新互聯
鏈接URL:http://vcdvsql.cn/article36/hsspg.html
成都網站建設公司_創新互聯,為您提供響應式網站、網站建設、網站導航、App開發、小程序開發、Google
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯