0

运算符 '!=' 不能应用于类型为 'string[]' 和 'string' 的操作数(是的,我知道之前有人问过类似的问题,我看过一个但使用的上下文/元素的类型不同,所以我'感谢我对我的案子的帮助 :) )

我有一个文件,我想在文件中点击以“0”开头的行时立即停止阅读。我的 while 循环遇到了不等式运算符的问题。

private void button1_Click(object sender, EventArgs e)
{
    // Reading/Inputing column values

    OpenFileDialog ofd = new OpenFileDialog();
    if (ofd.ShowDialog() == System.Windows.Forms.DialogResult.OK)
    {

        string[] lines = File.ReadAllLines(ofd.FileName).Skip(8).ToArray();
        textBox1.Lines = lines;

        while (lines != "0") // PROBLEM Happens Here
        {

            int[] pos = new int[3] { 0, 6, 18 }; //setlen&pos to read specific colmn vals
            int[] len = new int[3] { 6, 12, 28 }; // only doing 3 columns right now


            foreach (string line in textBox1.Lines)
            {

                for (int j = 0; j < 3; j++) // 3 columns
                {
                    val[j] = line.Substring(pos[j], len[j]).Trim(); // each column value in row add to array
                    list.Add(val[j]); // column values stored in list

                }

            }

        }
    }
4

2 回答 2

5

您收到错误,因为linesis string[]not a single string. 但是您想停在以"0"无论如何开头的第一行。因此,您可以在以下位置添加检查foreach

foreach (string line in lines)
{
    if(l.StartsWith("0")) break;
    // ...

但是,我会使用此方法来仅获取相关行:

var lines = File.ReadLines(ofd.FileName).Skip(8).TakeWhile(l => !l.StartsWith("0"));

不同的是ReadLines不需要处理整个文件。

于 2013-10-11T16:26:48.007 回答
2

string[] lines是一个数组您正在使用string.

它应该是这样的:

//to check if an element is an empty string
lines[index] != "" 

//to check if the array is null
lines != null 

//to check if the array has any elements
lines.Count() != 0 
lines.Length != 0
于 2013-10-11T16:27:18.647 回答