首页 > 代码库 > string.Format 指定字符串宽度

string.Format 指定字符串宽度

语法:

{ index[,alignment][:formatString]}

  • index,为索引号,不用多说.
  • alignment,是一个带符号的整数,绝对值的大小表示字段的宽度.
  • formatString,格式字符串组件.

需要注意的是,alignment对于字符串是不起作用的.

string.Format 指定字符串宽度