C# 中的字符串格式化用于添加填充


使用 C#,您可以轻松地格式化内容和对其添加填充。

要添加填充 -

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

现在,向字符串添加填充 -

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

我们来看看完整的代码 -

示例

 在线演示

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

输出

Rank Student
2 Tom

更新时间: 22-6-2020

911 次浏览

开启您的 职业生涯

通过完成课程进行认证

开始学习
广告