在 C# 中进行 String Formatting 来添加右部填充


要为 String 添加右填充 -

const string format = "{0,10}";

现在将它添加到 String -

string str1 = string.Format(format, "Marks","Subject");

让我们看完整的代码 -

示例

 实时演示

using System;

public class Program {
   public static void Main() {

      // set right padding
      const string format = "{0,10}";
      string str1 = string.Format(format, "Marks","Subject");
      string str2 = string.Format(format, "95","Maths");

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

输出

Marks
95

更新于: 22-Jun-2020

222 浏览次数

开启您的 职业

完成课程以获得认证

立即开始
广告