我可以使用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);
}
因为代码有点太多而无法放入帖子中,所以我将其作为gistub移动到github:
http://gist.github.com/533905#file_padded_string_format_info
人们可以轻松地分支它,无论如何:)
答案 0 :(得分:30)
还有另一种解决方案。
实施IFormatProvider
以返回将传递给string.Format的ICustomFormatter
:
public class StringPadder : ICustomFormatter
{
public string Format(string format, object arg,
IFormatProvider formatProvider)
{
// do padding for string arguments
// use default for others
}
}
public class StringPadderFormatProvider : IFormatProvider
{
public object GetFormat(Type formatType)
{
if (formatType == typeof(ICustomFormatter))
return new StringPadder();
return null;
}
public static readonly IFormatProvider Default =
new StringPadderFormatProvider();
}
然后你可以像这样使用它:
string.Format(StringPadderFormatProvider.Default, "->{0:x20}<-", "Hello");
答案 1 :(得分:11)
您可以将字符串封装在实现IFormattable
的结构中public struct PaddedString : IFormattable
{
private string value;
public PaddedString(string value) { this.value = value; }
public string ToString(string format, IFormatProvider formatProvider)
{
//... use the format to pad value
}
public static explicit operator PaddedString(string value)
{
return new PaddedString(value);
}
}
然后使用它:
string.Format("->{0:x20}<-", (PaddedString)"Hello");
结果:
"->xxxxxxxxxxxxxxxHello<-"
答案 2 :(得分:3)
简单:
dim input as string = "SPQR"
dim format as string =""
dim result as string = ""
'pad left:
format = "{0,-8}"
result = String.Format(format,input)
'result = "SPQR "
'pad right
format = "{0,8}"
result = String.Format(format,input)
'result = " SPQR"
答案 3 :(得分:2)
编辑:我误解了你的问题,我以为你问的是如何用空格填充。
使用string.Format
对齐组件无法提出要求; string.Format
总是用空格填充。请参阅MSDN: Composite Formatting的对齐组件部分。
根据Reflector,这是在StringBuilder.AppendFormat(IFormatProvider, string, object[])
内运行的代码,由string.Format
调用:
int repeatCount = num6 - str2.Length;
if (!flag && (repeatCount > 0))
{
this.Append(' ', repeatCount);
}
this.Append(str2);
if (flag && (repeatCount > 0))
{
this.Append(' ', repeatCount);
}
正如您所看到的,空白被硬编码为空白填充。