Computer >> Máy Tính >  >> Lập trình >> C#

Định dạng chuỗi trong C # để thêm phần đệm

Với C #, bạn có thể dễ dàng định dạng nội dung và thêm phần đệm vào nó.

Để thêm phần đệm -

const string format = "{0,-5} {1,5}";

Bây giờ, thêm phần đệm vào các chuỗi -

string str1 = string.Format(format, "Rank","Student");
string str2 = string.Format(format, "2","Tom");

Hãy cho chúng tôi xem mã hoàn chỉnh -

Ví dụ

using System;
using System.Collections.Generic;

public class Program {
   public static void Main() {

      // set padding
      const string format = "{0,-5} {1,5}";
      string str1 = string.Format(format, "Rank","Student");
      string str2 = string.Format(format, "2","Tom");

      Console.WriteLine(str1);
      Console.WriteLine(str2);
   }
}

Đầu ra

Rank Student
2 Tom