C#Decimal.Parse和无效的输入字符串

时间:2015-02-23 08:15:56

标签: c# string parsing decimal

我遇到错误问题:输入字符串的格式不正确。我正在尝试在datagrid中转换curency。在我得到错误的地方(这是我将值设置为值变量的地方),文本变量的值为22.22,所以我不知道格式有什么问题。

public void valute()
{
    int rowCount = dataGridView1.RowCount;
    decimal value = 0;
    for (int i = 0; i < rowCount; i++)
    {
        string text = dataGridView1.Rows[i].Cells[3].Value.ToString();

        if (evro_check.Checked)
            dataGridView1.Rows[i].Cells[3].Value = text + " €";
        else if (dolar_check.Checked)
        {
            value = Decimal.Parse(text.Replace(',', '.'), CultureInfo.InvariantCulture);
            dataGridView1.Rows[i].Cells[3].Value = value.ToString() + " $";
        }
        else
        {
            dataGridView1.Rows[i].Cells[3].Value = value + " £";
        }
    }
}

编辑:现在我只是添加了一个安全标志,后来我也将€改为$,这就是我使用额外的变量(值)而不使用其他2个电流的文本。

4 个答案:

答案 0 :(得分:1)

小心文化。 例如在英国,这个“10,000.10”是你的货币的1万和1/10,而在德国,格式则是另一种方式:“10.000,10”。

你所做的就是用“。”替换所有“,”。除非您将应用程序的当前文化更改为有意义的格式,否则显然会出现FormatException。

您应该将CultureInfo设置为您要定位的文化。

https://msdn.microsoft.com/en-US/library/b28bx3bh%28v=vs.80%29.aspx https://msdn.microsoft.com/en-us/library/bz9tc508%28v=vs.140%29.aspx

此外,最好使用格式提供程序,它会根据指定的文化格式化正确的货币字符串:

decimal value = 10000;

value.ToString("C", CultureInfo.InvariantCulture);
// Output : ¤10,000.00

value.ToString("C", CultureInfo.GetCultureInfo("de-DE"));
// Output : 10.000,00 €

value.ToString("C", CultureInfo.GetCultureInfo("en-US")).Dump();
// Output: $10,000.00

如果您注意到,美国格式将货币符号放在前面,德语放在最后。你也没有考虑过任何这些事情。

请参阅:https://msdn.microsoft.com/en-us/library/0b22a4x2%28v=vs.110%29.aspx

答案 1 :(得分:1)

您最好的选择是使用Tryparse而不是Parse

TryParse

  

此重载与Decimal.Parse(String)方法的不同之处在于返回一个布尔值,该值指示解析操作是否成功而不是返回已解析的数值。它消除了在s无效且无法成功解析的情况下使用异常处理来测试FormatException的需要。

改进代码的建议

string text = dataGridView1.Rows[i].Cells[3].Value.ToString();
Decimal value=0;

if (Decimal.TryParse(text.Replace(',', '.'), out value))
{
   //parse success
   dataGridView1.Rows[i].Cells[3].Value = value.ToString() + " $"; // put the correct value
}
else {
   //parse not success 
   dataGridView1.Rows[i].Cells[3].Value ="- $"; // Put something which allow you to identify the issue.
 }

这将允许您识别数据网格中错误格式化值的位置。

答案 2 :(得分:0)

试试这个

public void valute()
{
    int rowCount = dataGridView1.RowCount;
    decimal value = 0;
    for (int i = 0; i < rowCount; i++)
    {
        string text = dataGridView1.Rows[i].Cells[3].Value.ToString();

        if (evro_check.Checked)
            dataGridView1.Rows[i].Cells[3].Value = text + " €";
        else if (dolar_check.Checked)
        {
            if (text != "" || text != "&nbsp;")
            {
                value = Decimal.Parse(text.Replace(',', '.'), CultureInfo.InvariantCulture);
                dataGridView1.Rows[i].Cells[3].Value = value.ToString() + " $";
            }
        }
        else
        {
            dataGridView1.Rows[i].Cells[3].Value = value + " £";
        }
    }
}

答案 3 :(得分:0)

您可以使用Culture Info class

  public void valute()
  {
   int rowCount = dataGridView1.RowCount;
   decimal value = 0;
   for (int i = 0; i < rowCount; i++)
   {
       string text = dataGridView1.Rows[i].Cells[3].Value.ToString();

       if (evro_check.Checked)
           dataGridView1.Rows[i].Cells[3].Value = text.ToString("C", CultureInfo.GetCultureInfo("fr")); //€
       else if (dolar_check.Checked)
       {
           value = Decimal.Parse(text.Replace(',', '.'), CultureInfo.InvariantCulture);
           dataGridView1.Rows[i].Cells[3].Value = text.ToString("C", CultureInfo.GetCultureInfo("fr-CA")); //$
       }
       else
       {
           dataGridView1.Rows[i].Cells[3].Value = text.ToString("C", CultureInfo.GetCultureInfo("en-GB"));
       }
   }
  }

第二种方法 使用Unicode

public static char HexToChar(string hex)
{
  return (char)ushort.Parse(hex, System.Globalization.NumberStyles.HexNumber);
}

\ u00A3是英镑符号,£

\ u20AC是欧元符号,€。

\ u0024是美元符号,$。

How to insert a Symbol (Pound, Euro, Copyright) into a Textbox