我正在解析我的数据输出,但是,我的数据中有返回字符 (\n)。因此,当我运行我的代码时,会构建数组,其中一个数组 (4) 是空白数据……我尝试使用 null、“”和“”。有谁知道我怎样才能阻止最后一个数组显示?
char[] returnChar= {'\n' };
string parseText = captcha;
string[] words = parseText.Split(returnChar);
int count = words.Length;
for (int i = 0; i < count; i++)
{
if (words[i] == null)
{
MessageBox.Show("This row is empty: " + i);
}
MessageBox.Show(words[i]);
}