小数点第1位のみを表示したいのですが。私は次のことを試しました:
string thevalue = "6.33";
thevalue = string.Format("{0:0.#}", thevalue);
結果:6.33。しかし、6.3である必要がありますか?0.0でも動作しません。私は何が間違っているのですか?
それが機能するには、浮動小数点値である必要があります。
double thevalue = 6.33;
これがデモです。今のところ、それは単なる文字列なので、そのまま挿入されます。解析する必要がある場合は、double.Parse
またはを使用してくださいdouble.TryParse
。(または、、float
またはdecimal
。)
必要に応じて浮動小数点数をフォーマットする別の方法は次のとおりです。
string.Format("{0:F1}",6.33);
考慮すべきいくつかの異なる例を次に示します。
double l_value = 6;
string result= string.Format("{0:0.00}", l_value );
Console.WriteLine(result);
出力:6.00
double l_value = 6.33333;
string result= string.Format("{0:0.00}", l_value );
Console.WriteLine(result);
出力:6.33
double l_value = 6.4567;
string result = string.Format("{0:0.00}", l_value);
Console.WriteLine(result);
出力:6.46
ToString()はジョブを簡素化します。
double.Parse(theValue).ToString("N1")
オプション1(文字列にします):
string thevalue = "6.33";
thevalue = string.Format("{0}", thevalue.Substring(0, thevalue.length-1));
オプション2(変換):
string thevalue = "6.33";
var thevalue = string.Format("{0:0.0}", double.Parse(theValue));
オプション3(RegExを起動):
var regex = new Regex(@"(\d+\.\d)"); // but that everywhere, maybe static
thevalue = regexObj.Match(thevalue ).Groups[1].Value;
これをしてください:
String.Format("{0:0.0}", 123.4567); // return 123.5