我正在尝试计算C#中富文本框中的单词数量,下面的代码只有在单行时才有效。如何在不依赖正则表达式或任何其他特殊功能的情况下执行此操作。
string whole_text = richTextBox1.Text;
string trimmed_text = whole_text.Trim();
string[] split_text = trimmed_text.Split(' ');
int space_count = 0;
string new_text = "";
foreach(string av in split_text)
{
if (av == "")
{
space_count++;
}
else
{
new_text = new_text + av + ",";
}
}
new_text = new_text.TrimEnd(',');
split_text = new_text.Split(',');
MessageBox.Show(split_text.Length.ToString ());
答案 0 :(得分:33)
char[] delimiters = new char[] {' ', '\r', '\n' };
whole_text.Split(delimiters,StringSplitOptions.RemoveEmptyEntries).Length;
答案 1 :(得分:20)
由于您只对字数感兴趣,并且您不关心单个字词,因此可以避免使用String.Split
。 String.Split
非常方便,但它不必要地生成(可能)大量String
个对象,这反过来又会给垃圾收集器带来不必要的负担。对于文本中的每个单词,需要实例化一个新的String
对象,然后很快收集,因为您没有使用它。
对于家庭作业,这可能无关紧要,但如果您的文本框内容经常更改并且您在事件处理程序中进行此计算,则简单地手动迭代字符可能更明智。如果您真的想使用String.Split
,请选择推荐的Yonix等更简单的版本。
否则,请使用与此类似的算法:
int wordCount = 0, index = 0;
// skip whitespace until first word
while (index < text.Length && char.IsWhiteSpace(text[index]))
index++;
while (index < text.Length)
{
// check if current char is part of a word
while (index < text.Length && !char.IsWhiteSpace(text[index]))
index++;
wordCount++;
// skip whitespace until next word
while (index < text.Length && char.IsWhiteSpace(text[index]))
index++;
}
对于每个单词之间有多个空格的情况,此代码应该可以更好地运行,您可以测试code online。
答案 2 :(得分:4)
有一些更好的方法可以做到这一点,但要与你所拥有的一致,请尝试以下方法:
string whole_text = richTextBox1.Text;
string trimmed_text = whole_text.Trim();
// new line split here
string[] lines = trimmed_text.Split(Environment.NewLine.ToCharArray());
// don't need this here now...
//string[] split_text = trimmed_text.Split(' ');
int space_count = 0;
string new_text = "";
现在制作两个foreach循环。每行一个,一个用于计算行内的单词。
foreach (string line in lines)
{
// Modify the inner foreach to do the split on ' ' here
// instead of split_text
foreach (string av in line.Split(' '))
{
if (av == "")
{
space_count++;
}
else
{
new_text = new_text + av + ",";
}
}
}
new_text = new_text.TrimEnd(',');
// use lines here instead of split_text
lines = new_text.Split(',');
MessageBox.Show(lines.Length.ToString());
}
答案 3 :(得分:2)
这是我刚刚拍摄的一个电话筛选面试问题(由位于加利福尼亚州的一家大公司出售各种以“i”字母开头的设备),我想我离开后...离线后,我写了这个。我希望我能在采访期间做到这一点..
static void Main(string[] args)
{
Debug.Assert(CountWords("Hello world") == 2);
Debug.Assert(CountWords(" Hello world") == 2);
Debug.Assert(CountWords("Hello world ") == 2);
Debug.Assert(CountWords("Hello world") == 2);
}
public static int CountWords(string test)
{
int count = 0;
bool wasInWord = false;
bool inWord = false;
for (int i = 0; i < test.Length; i++)
{
if (inWord)
{
wasInWord = true;
}
if (Char.IsWhiteSpace(test[i]))
{
if (wasInWord)
{
count++;
wasInWord = false;
}
inWord = false;
}
else
{
inWord = true;
}
}
// Check to see if we got out with seeing a word
if (wasInWord)
{
count++;
}
return count;
}
答案 4 :(得分:1)
查看@Jay Riggs评论中提到的Lines
属性以及this overload of String.Split以使代码更简单。然后最简单的方法是遍历Lines
属性中的每一行,在其上调用String.Split
,并将它返回的数组的长度添加到运行计数。
编辑:另外,您是否有任何理由使用RichTextBox而不是将Multiline
设置为True
的TextBox?
答案 5 :(得分:1)
static void Main(string[] args)
{
var path = @"C:\Users\Saurav Shrestha\Desktop\C_sharp\FileInfoPractice.txt";
var content = File.ReadAllText(path);
Console.WriteLine(content);
var words = content.Split(' ');
var array = new List<string>();
foreach (var word in words)
array.Add(word);
int count = 0;
for (int i = 0; i < array.Count; i++)
{
if (array[i] != null)
count += 1;
}
Console.WriteLine("Number of Words in the File: {0}", count);
}
}
我会这样做。从文件中获取文本。从空格中分割字符串->将每个单词添加到新的字符串列表中->将初始计数设置为0,并在每次array [i]不为null时加1进行计数。
答案 6 :(得分:0)
您的方法是正确的。我会做类似的事情,将richTextBox1的text属性传递给方法。但是,如果您的富文本框格式化HTML,则这将不准确,因此您需要在运行单词计数之前删除任何HTML标记:
public static int CountWords(string s)
{
int c = 0;
for (int i = 1; i < s.Length; i++)
{
if (char.IsWhiteSpace(s[i - 1]) == true)
{
if (char.IsLetterOrDigit(s[i]) == true ||
char.IsPunctuation(s[i]))
{
c++;
}
}
}
if (s.Length > 2)
{
c++;
}
return c;
}
答案 7 :(得分:0)
我们使用了Yoshi答案的改编形式,我们修正了错误,如果后面没有空格,它就不会计算字符串中的最后一个字:
public static int CountWords(string test)
{
int count = 0;
bool inWord = false;
foreach (char t in test)
{
if (char.IsWhiteSpace(t))
{
inWord = false;
}
else
{
if (!inWord) count++;
inWord = true;
}
}
return count;
}
答案 8 :(得分:0)
我使用extension method来获取字符串中的字数。请注意,但是,双空格会弄乱计数。
/.well-known/pki-validation/439DB901A2C81E9979254CBA723E6870.txt
答案 9 :(得分:0)
这可以显示一行中的单词数
string line = Console.ReadLine();
string[] word = line.Split(' ');
Console.WriteLine("Words " + word.Length);
答案 10 :(得分:-1)
public static int WordCount(string str)
{
int num=0;
bool wasInaWord=true;;
if (string.IsNullOrEmpty(str))
{
return num;
}
for (int i=0;i< str.Length;i++)
{
if (i!=0)
{
if (str[i]==' ' && str[i-1]!=' ')
{
num++;
wasInaWord=false;
}
}
if (str[i]!=' ')
{
wasInaWord=true;
}
}
if (wasInaWord)
{
num++;
}
return num;
}
答案 11 :(得分:-1)
这应该有效
input.Split(' ').ToList().Count;
答案 12 :(得分:-1)
class Program
{
static void Main(string[] args)
{
string str;
int i, wrd, l;
StringBuilder sb = new StringBuilder();
Console.Write("\n\nCount the total number of words in a string
:\n");
Console.Write("---------------------------------------------------
---\n");
Console.Write("Input the string : ");
str = Console.ReadLine();
l = 0;
wrd = 1;
foreach (var a in str)
{
sb.Append(a);
if (str[l] == ' ' || str[l] == '\n' || str[l] == '\t')
{
wrd++;
}
l++;
}
Console.WriteLine(sb.Replace(' ', '\n'));
Console.Write("Total number of words in the string is : {0}\n",
wrd);
Console.ReadLine();
}
答案 13 :(得分:-2)
你也可以这样做!!将此方法添加到扩展方法中。
public static int WordsCount(this string str)
{
return Regex.Matches(str, @"((\w+(\s?)))").Count;
}
并称之为。
string someString = "Let me show how I do it!";
int wc = someString.WordsCount();