在下一个代码中,我将文本拆分为单词,将它们分别插入表中并计算每个单词中的字母数。 问题是计数器也计算每行开头的空格,并给出了一些错误的值。 我怎样才能完全计算每个单词的字母?
var str = reader1.ReadToEnd();
char[] separators = new char[] {' ', ',', '/', '?'}; //Clean punctuation from copying
var words = str.Split(separators, StringSplitOptions.RemoveEmptyEntries).ToArray(); //Insert all the song words into "words" string
string constring1 = "datasource=localhost;port=3306;username=root;password=123";
using (var conDataBase1 = new MySqlConnection(constring1))
{
conDataBase1.Open();
for (int i = 0; i < words.Length; i++)
{
int numberOfLetters = words[i].ToCharArray().Length; //Calculate the numbers of letters in each word
var songtext = "insert into myproject.words (word_text,word_length) values('" + words[i] + "','" + numberOfLetters + "');"; //Insert words list and length into words table
MySqlCommand cmdDataBase1 = new MySqlCommand(songtext, conDataBase1);
try
{
cmdDataBase1.ExecuteNonQuery();
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
}
}
答案 0 :(得分:0)
int numberOfLetters = words[i].Trim().ToCharArray().Length; //Calculate the numbers of letters in each word
答案 1 :(得分:0)
而不是' '
使用'\s+'
,因为它一次匹配一个或多个空格,因此它会拆分任意数量的空白字符。
Regex.Split(myString, @"\s+");
答案 2 :(得分:0)
这将是一种简单快捷的方式:
int numberOfLetters = words[i].Count(word => !Char.IsWhiteSpace(word));
另一个简单的解决方案是保存上述和其余的答案,首先是Trim()
,而不是正常的计算,因为你的陈述是它发生在每一行的开头
var words = str.Trim().Split(separators, StringSplitOptions.RemoveEmptyEntries);
所有你需要的是:(没有冗余转换)
int numberOfLetters = words[i].Length;