如何比较两个文本框

本文关键字:两个 文本 比较 何比较 | 更新日期: 2023-09-27 17:57:06

>我正在尝试比较两个文本框以查看它们是否为空,但出现异常错误:

输入字符串格式不正确

法典:

private void btncalc_Click(object sender, EventArgs e)
{
    try
    {
        int ina= int.Parse(txttea.Text);
        int inb= int.Parse(txtcoffee.Text);
        int inc = 0, ind = 0;
        if (this.txttea.Text == "" && this.txtcoffee.Text == "")  // this not working
        {
            MessageBox.Show("select a item");
            txttea.Focus();
        }
        if (cbxwithoutsugar.Checked)
        {
            inc = (ina * 20);
        }
        else
        {
            inc = (ina * 8);
        }
        if (cbxcoldcoffee.Checked)
        {
            ind = (inb * 10);
        }
        else
        {
            ind = (inb * 5);
        }
        txtamount.Text = (Convert.ToInt32(inc) + Convert.ToInt32(ind)).ToString();
    }
    catch (Exception a)
    {
        MessageBox.Show(a.Message);
    }
}

如何比较两个文本框

您应该首先检查文本框是否为空,然后才尝试获取值。
另外,像这样使用 String.IsNullOrEmpty:

    if (String.IsNullOrEmpty(txttea.Text) || String.IsNullOrEmpty(txtcoffee.Text)) 
    {
        MessageBox.Show("select a item");
        txttea.Focus();
    }
    int ina= int.Parse(txttea.Text); // See comment below about TryParse
    int inb= int.Parse(txtcoffee.Text);
    int inc = 0, ind = 0;

另外,使用 TryParse 而不是 Parse(修剪始终是避免空白的好主意):

int ina;
if (!Int32.TryParse(txttea.Text.Trim(), out ina))
{
   MessageBox.Show("Value is not a number");
}

尝试使用 TryParse 方法,因为如果有空格,您的代码就会失败,使用 TryParse,你不需要 try-catch 而只需将两个整数与零进行比较,例如:

int ina =0 , inb =0;
int.TryParse(txttea.Text, out ina);
int.TryParse(txtcoffee.Text, out inb);
if (ina == 0 && this.inb == 0)  // this not working
{
}

我建议你在需要数字时使用NumericUpDown而不是TextBox。 这样,您可以使用值来获取咖啡和茶的数量。

private void btncalc_Click(object sender, EventArgs e)
{
    try
    {
        int ina= numtea.Value;
        int inb= numcoffee.Value;
        int inc = 0, ind = 0;
        if (ina == 0 && inb == 0)  // this not working
        {
            MessageBox.Show("select a item");
            numtea.Focus();
        }
        if (cbxwithoutsugar.Checked)
        {
            inc = (ina * 20);
        }
        else
        {
            inc = (ina * 8);
        }
        if (cbxcoldcoffee.Checked)
        {
            ind = (inb * 10);
        }
        else
        {
            ind = (inb * 5);
        }
        txtamount.Text = (inc + ind).ToString();
    }    
}

这是一个很好的用户友好型解决方案。

我有一种感觉,您指示为"不起作用"的行不是问题,而是整数解析。 异常不是可以从逻辑测试中引发的异常,而是可以从格式错误的整数分析中引发的异常。 尝试注释掉解析行,看看错误是否仍然存在。

首先,您正在解析文本框的文本。 然后您再次根据 null 检查其文本值。这不是多余的吗?

如果文本区域中的文本不是数字,则应该存在解析异常。 它将显示在消息框中。我认为您可以尝试放置一些日志记录语句来激活解析的整数的值。