将包含句点(。)的字符串转换为C#中的Int32时出现问题

时间:2014-05-09 18:59:29

标签: c# .net datagridview int32

我正在创建一个POS(销售点),我在尝试将价格“0.60”转换为整数时遇到了问题。

数据背景:数据源的所有数据都来自我已设置并连接的MySQL数据库,没有任何问题。

价格存储在TextBox中,格式为“0.60”,我相信这就是它没有被转换的原因。我一直收到以下信息。

  

其他信息:输入字符串的格式不正确。

        //Puts the Price Into a String.
        string NewPrice = txtPrice.Text;

        //Converts The Quantity In the TextBox field to a numbers.
        Quantity = Convert.ToInt32(txtQuant.Text);

        //Incorrect Format & Attempt One.
        //Price = Convert.ToInt32(NewPrice); <--- Problem.
        //Price = int.Parse(NewPrice);

        // I've also tried this method below with two '0' inside the { } brackets.
        // But Still No Luck.
        Price = Convert.ToInt32(string.Format("{0.00}",txtPrice.Text)); // <--- Problem.

        // Times Price & Quantity to get Total Price (0.60 * 2 = 1.20)
        TotalSingleItemPrice = Price * Quantity;

        // The Single Item Price is added into the overall total.
        TotalPrice += TotalSingleItemPrice;

        // Converts Total Item Price to String from Int.
        string TotalPriceStr = Convert.ToString(TotalSingleItemPrice);           

        // Puts TextBoxes / Strings Into One String array (I think).
        string[] InizialItemList = new string[] { cmboInitItem.Text, Convert.ToString(Price), Convert.ToString(Quantity), TotalPriceStr};

        // Adds The String Array Into the Data Grid View.
        DGVIIL.Rows.Add(InizialItemList);

我尝试使用string.Format("{0.00}",txtPrice.Text)设置来解决这个问题,我只是看不到我看到的内容。如果可能的话,我希望Price出现在我的DataGridView - DGVIIL中,0.60

4 个答案:

答案 0 :(得分:3)

0.60不是整数,错误就在

备选方案:

Decimal d = Decimal.Parse(txtPrice.Text);

甚至更好:

Decimal d;
if ( decimal.TryParse(txtPrice.Text, out d) == false ){
  //handle bad number...
}

答案 1 :(得分:1)

您需要使用decimal.ParseConvert.ToDecimal,因为您的字符串显然不是int。当您处理货币时,建议使用十进制。

Price = Convert.ToDecimal(NewPrice);
Price = decimal.Parse(NewPrice);

另外,我建议你研究TryParse用于验证:

decimal price;
if (decimal.TryParse(NewPrice, out price))
{ // do stuff }

答案 2 :(得分:1)

您需要将其转换为double,然后转换为int。

int x = Convert.ToInt32( Convert.ToDouble("1.11")); 

//Expected output: x = 1

答案 3 :(得分:0)

Price = Convert.ToInt32(string.Format("{0.00}",txtPrice.Text));

在上面的代码中,您将从十进制样式格式转换为整数。 int32类型只能包含整数,因此convert方法会给你一个错误。相反,您可以使用double的类型来正确保存您的值。

double Price;
Price = Convert.ToDouble(string.Format("{0.00}",txtPrice.Text));