String.Format() を使用して、特定の文字列に任意の文字を埋め込むことはできますか?
Console.WriteLine("->{0,18}<-", "hello");
Console.WriteLine("->{0,-18}<-", "hello");
returns
-> hello<-
->hello <-
スペースを任意の文字にしたいのです。padLeft または padRight でそれを行うことができない理由は、書式設定が実際に実行される別の場所/時間で書式設定文字列を作成できるようにしたいためです。
--編集
--私の問題に対する既存の解決策がないように思われるのを見て、私はこれを思いつきました(Think Before Codingの提案の後)
-EDIT2--
もっと複雑なシナリオが必要だったので、Think Before Coding'sに行きました2番目の提案
[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);
}
投稿するにはコードが多すぎたので、Gist として github に移動しました:
http://gist.github.com/533905#file_padded_string_format_info
そこで人々は簡単にそれを分岐することができます:)