获取TextBox中的文本行数

时间:2012-03-07 18:07:44

标签: c# winforms

我试图通过标签显示文本框中的文本行数。但是,如果最后一行是空的,则标签必须显示没有该空行的行号。

例如,如果它们是5行,最后一行为空,则标签应显示行数为4。

谢谢..

private void txt_CurrentVinFilter_EditValueChanged(object sender, EventArgs e)
{
   labelCurrentVinList.Text = string.Format("Current VIN List ({0})",  txt_CurrentVinFilter.Lines.Length.ToString());                       
}

实际上,上面是代码......必须更改为只显示C#winforms中的空白行。

由于

3 个答案:

答案 0 :(得分:12)

您也可以使用LinQ以更短的方式执行此操作。如果它是空的,则计算行数并排除最后一行:

var lines = tb.Lines.Count();
lines -= String.IsNullOrWhiteSpace(tb.Lines.Last()) ? 1 : 0;

并且只计算非空行:

var lines = tb.Lines.Where(line => !String.IsNullOrWhiteSpace(line)).Count();

答案 1 :(得分:0)

这不会将任何空行计为结尾

int count = tb.Lines.Length;
while (count > 0 && tb.Lines[count - 1] == "") {
    count--;
}

或者,如果您还要排除仅包含空格的行

int count = tb.Lines.Length;
while (count > 0 && tb.Lines[count - 1].Trim(' ','\t') == "" ) {
    count--;
}

答案 2 :(得分:0)

如果将WordWrap设置为true,并且希望显示的行数,请尝试:

int count = textBox1.GetLineFromCharIndex(int.MaxValue) + 1;
// Now count is the number of lines that are displayed, if the textBox is empty count will be 1
// And to get the line number without the empty lines:
if (textBox1.Lines.Length == 0)
    --count;
foreach (string line in textBox1.Lines)
    if (line == "")
        --count;