[ad_1]
你好
我读取了包含很多单词的文本文件,文件内容保存在 s0 中
我想知道它有多少个单词
我用了
MyWord = s0.Split(新字符[] { ‘ ‘ }, StringSplitOptions.RemoveEmptyEntries);
MyWord 是字符串数组
帮助
我尝试过的:
StreamReader sr; string[] MyWord = new string[4096]; private void FormLoad(object sender, EventArgs e) { int i, j, count=0; for (i = 0; i < 4096; i++) MyWord[i] = "";// string.Empty; string s0 = sr.ReadToEnd(); MyWord = s0.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries); sr = new StreamReader(fsr, System.Text.Encoding.Default); count = 0; for (i = 0; i < 4096; i++) { if (MyWord[i] != "")//'type of error =Index was outside the bounds of the array.' { MessageBox.Show("MyWord["+i.ToString()+"]= "+MyWord[i],"count="+count.ToString()); count++; } else break; } MessageBox.Show(count.ToString() , "count"); }
解决方案1
这是一种方法:
C#
using System.Text.RegularExpressions; string text = "The quick brown, and lazy, fox jumped over the tall-green fence!\r\n What a sight it was. "; int WordCount = Regex.Matches(text, @"\b[A-Za-z0-9]+\b").Count; int ParagraphCount = Regex.Matches(text, @"[^\r\n]*[^ \r\n]+[^\r\n]*((\r|\n|\r\n)[^\r\n]*[^ \r\n]+[^\r\n]*)*").Count + 1; Console.WriteLine(text); Console.WriteLine($"contains {WordCount} words and {ParagraphCount} paragraphs.");
输出:
The quick brown, and lazy, fox jumped over the tall-green fence! What a sight it was. contains 17 words and 2 paragraphs.
解决方案2
一个更简单的正则表达式是
正则表达式
\w+
这会给你
The quick brown and lazy fox jumped over the tall green fence What a sight it was
计算匹配项即可得出单词数。
[ad_2]
コメント