Home  >  Article  >  Backend Development  >  String format for Double in C#

String format for Double in C#

PHPz
PHPzforward
2023-09-11 11:29:02773browse

C# 中 Double 的字符串格式

Use the static method String.Format in C# to form a double string format.

For three decimal places -

String.Format("{0:0.000}", 987.383);
String.Format("{0:0.000}", 987.38);
String.Format("{0:0.000}", 987.7899);

For thousands separator -

String.Format("{0:0,0.0}", 54567.46);
String.Format("{0:0,0}", 54567.46);

Format string -

Example

using System;

class Demo {

   public static void Main(String[] args) {
      Console.WriteLine("Three decimal places...");
   
      Console.WriteLine( String.Format("{0:0.000}", 987.383));
      Console.WriteLine( String.Format("{0:0.000}", 987.38));
      Console.WriteLine(String.Format("{0:0.000}", 987.7899));
   
      Console.WriteLine("Thousands Separator...");
      Console.WriteLine(String.Format("{0:0,0.0}", 54567.46));
      Console.WriteLine(String.Format("{0:0,0}", 54567.46));
   }
}

The above is the detailed content of String format for Double in C#. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete