Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

ตัวอักษรสตริงที่จัดรูปแบบใน C #


ในการจัดรูปแบบตัวอักษรสตริงใน C # ให้ใช้เมธอด String.Format

ในตัวอย่างต่อไปนี้ 0 คือดัชนีของวัตถุที่มีค่าสตริงถูกแทรกที่ตำแหน่งนั้น -

using System;
namespace Demo {
   class Test {
      static void Main(string[] args) {
         decimal A = 15.2 m;
         string res = String.Format("Temperature = {0}°C.", A);
         Console.WriteLine(res);
      }
   }
}

ในตัวอย่างต่อไปนี้ ให้เราจัดรูปแบบสตริงสำหรับประเภทคู่

ตัวอย่าง

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));
   }
}

ผลลัพธ์

Three decimal places...
987.383
987.380
987.790
Thousands Separator...
54,567.5
54,567