我正在尝试将1200.00
转换为decimal
,但Decimal.Parse()
会移除.00
。我尝试了一些不同的方法,但它总是删除.00
,除非我提供的分数不同于0。
string value = "1200.00";
var convertDecimal = Decimal.Parse(value , NumberStyles.AllowThousands
| NumberStyles.AllowDecimalPoint | NumberStyles.AllowCurrencySymbol);
var convertDecimal = Convert.ToDecimal(value);
var convertDecimal = Decimal.Parse(value,
NumberStyles.AllowDecimalPoint, CultureInfo.InvariantCulture);
如何将包含string
的{{1}}转换为包含1200.00
的{{1}}?
答案 0 :(得分:76)
嗯......我无法重现这个:
using System;
class Test
{
static void Main()
{
decimal d = decimal.Parse("1200.00");
Console.WriteLine(d); // Prints 1200.00
}
}
你确定你的代码的其他部分不是稍后规范化小数值吗?
如果是文化问题,请尝试使用此版本,该版本根本不应取决于您的语言环境:
using System;
using System.Globalization;
class Test
{
static void Main()
{
decimal d = decimal.Parse("1200.00", CultureInfo.InvariantCulture);
Console.WriteLine(d.ToString(CultureInfo.InvariantCulture));
}
}
答案 1 :(得分:11)
我认为你的问题是在显示小数时,而不是它的内容。
如果您尝试
string value = "1200.00";
decimal d = decimal.Parse(s);
string s = d.ToString();
s
将包含字符串"1200"
。
但是,如果您将代码更改为此
string value = "1200.00";
decimal d = decimal.Parse(s);
string s = d.ToString("0.00");
s
将包含您希望它执行的字符串"1200.00"
。
修改强>
似乎我今天早上一直在大脑死亡。我现在添加了Parse
语句。然而,即使我的第一个代码输出“1200.00”,即使我预期它输出“1200”。好像我每天都在学习一些东西,在这种情况下显然是非常基本的东西。
所以请忽略这个正确的答案。在这种情况下,我们可能需要更多代码来识别您的问题。
答案 2 :(得分:11)
您好我有同样的问题,但很容易,只需这样做:
string cadena="96.23";
decimal NoDecimal=decimal.parse(cadena.replace(".",","))
我认为这是因为在十进制数上接受C#的符号是“,”
答案 3 :(得分:5)
以下代码将值打印为1200.00。
var convertDecimal = Convert.ToDecimal("1200.00");
Console.WriteLine(convertDecimal);
不确定你在期待什么?
答案 4 :(得分:2)
使用此示例
System.Globalization.CultureInfo culInfo = new System.Globalization.CultureInfo("en-GB",true);
decimal currency_usd = decimal.Parse(GetRateFromCbrf("usd"),culInfo);
decimal currency_eur = decimal.Parse(GetRateFromCbrf("eur"), culInfo);
答案 5 :(得分:2)
这是我为自己想出的解决方案。这已准备好作为命令提示项目运行。如果没有,你需要清理一些东西。希望这可以帮助。它接受几种输入格式,如:1.234.567,89 1,234,567.89等
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Globalization;
using System.Linq;
namespace ConvertStringDecimal
{
class Program
{
static void Main(string[] args)
{
while(true)
{
// reads input number from keyboard
string input = Console.ReadLine();
double result = 0;
// remove empty spaces
input = input.Replace(" ", "");
// checks if the string is empty
if (string.IsNullOrEmpty(input) == false)
{
// check if input has , and . for thousands separator and decimal place
if (input.Contains(",") && input.Contains("."))
{
// find the decimal separator, might be , or .
int decimalpos = input.LastIndexOf(',') > input.LastIndexOf('.') ? input.LastIndexOf(',') : input.LastIndexOf('.');
// uses | as a temporary decimal separator
input = input.Substring(0, decimalpos) + "|" + input.Substring(decimalpos + 1);
// formats the output removing the , and . and replacing the temporary | with .
input = input.Replace(".", "").Replace(",", "").Replace("|", ".");
}
// replaces , with .
if (input.Contains(","))
{
input = input.Replace(',', '.');
}
// checks if the input number has thousands separator and no decimal places
if(input.Count(item => item == '.') > 1)
{
input = input.Replace(".", "");
}
// tries to convert input to double
if (double.TryParse(input, out result) == true)
{
result = Double.Parse(input, NumberStyles.AllowLeadingSign | NumberStyles.AllowDecimalPoint | NumberStyles.AllowThousands, CultureInfo.InvariantCulture);
}
}
// outputs the result
Console.WriteLine(result.ToString());
Console.WriteLine("----------------");
}
}
}
}
答案 6 :(得分:1)
CultureInfo课程的使用对我有用,希望对你有帮助。
string value = "1200.00";
CultureInfo culture = new CultureInfo("en-US");
decimal result = Convert.ToDecimal(value, culture);
答案 7 :(得分:0)
即使打印的表示不符合您的预期,该值也是相同的:
decimal d = (decimal )1200.00;
Console.WriteLine(Decimal.Parse("1200") == d); //True
答案 8 :(得分:0)
您可以尝试在程序中调用此方法:
static double string_double(string s)
{
double temp = 0;
double dtemp = 0;
int b = 0;
for (int i = 0; i < s.Length; i++)
{
if (s[i] == '.')
{
i++;
while (i < s.Length)
{
dtemp = (dtemp * 10) + (int)char.GetNumericValue(s[i]);
i++;
b++;
}
temp = temp + (dtemp * Math.Pow(10, -b));
return temp;
}
else
{
temp = (temp * 10) + (int)char.GetNumericValue(s[i]);
}
}
return -1; //if somehow failed
}
示例:
string s = "12.3";
double d = string_double (s); //d = 12.3
答案 9 :(得分:0)
十进制d = 3.00仍然是3。 我想你想在屏幕上显示它或在日志文件上打印为3.00。 您可以执行以下操作
string str = d.ToString("F2");
或者如果您使用数据库存储小数,则可以在数据库中设置pricision值。
答案 10 :(得分:-4)
这是你必须要做的。
decimal d = 1200.00;
string value = d.ToString(CultureInfo.InvariantCulture);
// value = "1200.00"
这对我有用。感谢。