1200.00
をdecimal
に変換しようとしていますが、Decimal.Parse()
は.00
を削除します。私はいくつかの異なる方法を試しましたが、0以外の分数を指定する場合を除き、常に.00
を削除します。
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);
1200.00
を含むstring
を1200.00
を含むdecimal
に変換するにはどうすればよいですか?
うーん...私はこれを再現することはできません:
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));
}
}
私はあなたの問題は小数点の内容ではなく小数点を表示するときだと思います。
しようとしたら
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」を出力すると予想されていた場合でも、最初のコードで「1200.00」が出力されます。私は毎日何かを学んでいるようで、この場合は明らかに基本的なことです。
したがって、これを適切な答えとして無視してください。この場合、問題を特定するために、おそらくさらにコードが必要になります。
こんにちは、私は同じ問題を抱えていましたが、簡単です、ただこれをしてください:
string cadena="96.23";
decimal NoDecimal=decimal.parse(cadena.replace(".",","))
これは、10進数でC#を受け入れる表記が「、」であるためだと思います
以下のコードは、値を1200.00として出力します。
var convertDecimal = Convert.ToDecimal("1200.00");
Console.WriteLine(convertDecimal);
あなたが何を期待しているかわからない?
CultureInfoクラスの使用は私のために働いた、私はあなたを助けることを願っています。
string value = "1200.00";
CultureInfo culture = new CultureInfo("en-US");
decimal result = Convert.ToDecimal(value, culture);
これが私が自分で思いついた解決策です。これは、コマンドプロンプトプロジェクトとして実行する準備ができています。そうでない場合は、いくつかのものをきれいにする必要があります。お役に立てれば。 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("----------------");
}
}
}
}
この例を使用してください
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);
10進数d = 3.00はまだ3です。画面上のどこかに表示するか、ログファイルに3.00として印刷する必要があると思います。あなたは次のことができます
string str = d.ToString("F2");
または、データベースを使用して小数を格納している場合は、データベースにpricision値を設定できます。
印刷された表現が予期したものではない場合でも、値は同じです。
decimal d = (decimal )1200.00;
Console.WriteLine(Decimal.Parse("1200") == d); //True
プログラムでこのメソッドを呼び出すことができます:
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