【发布时间】:2010-10-07 04:00:08
【问题描述】:
我可以使用 String.Format() 用任意字符填充某个字符串吗?
Console.WriteLine("->{0,18}<-", "hello");
Console.WriteLine("->{0,-18}<-", "hello");
returns
-> hello<-
->hello <-
我现在希望空格是任意字符。 我无法使用 padLeft 或 padRight 执行此操作的原因是因为我希望能够在不同的位置/时间构造格式字符串,然后实际执行格式化。
--编辑--
看到我的问题似乎没有现成的解决方案,我想出了这个(Think Before Coding's suggestion 之后)
--EDIT2--
我需要一些更复杂的场景,所以我选择了Think Before Coding's second suggestion
[TestMethod]
public void PaddedStringShouldPadLeft() {
string result = string.Format(new PaddedStringFormatInfo(), "->{0:20:x} {1}<-", "Hello", "World");
string expected = "->xxxxxxxxxxxxxxxHello World<-";
Assert.AreEqual(result, expected);
}
[TestMethod]
public void PaddedStringShouldPadRight()
{
string result = string.Format(new PaddedStringFormatInfo(), "->{0} {1:-20:x}<-", "Hello", "World");
string expected = "->Hello Worldxxxxxxxxxxxxxxx<-";
Assert.AreEqual(result, expected);
}
[TestMethod]
public void ShouldPadLeftThenRight()
{
string result = string.Format(new PaddedStringFormatInfo(), "->{0:10:L} {1:-10:R}<-", "Hello", "World");
string expected = "->LLLLLHello WorldRRRRR<-";
Assert.AreEqual(result, expected);
}
[TestMethod]
public void ShouldFormatRegular()
{
string result = string.Format(new PaddedStringFormatInfo(), "->{0} {1:-10}<-", "Hello", "World");
string expected = string.Format("->{0} {1,-10}<-", "Hello", "World");
Assert.AreEqual(expected, result);
}
因为代码有点多放不下,我把它移到github上作为要点:
http://gist.github.com/533905#file_padded_string_format_info
人们可以轻松地对其进行分支和任何事情:)
【问题讨论】:
-
我认为你应该确保字符串不为空。它会通过测试吗: string.Fomat("{0}", (PaddedString)"Hello"); ?
标签: c# formatting padding string.format