如何用所需字符填充字符串

时间:2010-12-28 15:05:36

标签: .net string .net-3.5 .net-4.0

我需要获得带有8'*'符号的字符串。我怎么能在.NET 3.5中做到这一点? .NET 4.0?

感谢。

2 个答案:

答案 0 :(得分:11)

尝试:

string str = new string('*', 8);

答案 1 :(得分:1)

我自己的快速解决方法:

"".PadLeft(Password.Length,'*')

:)

但我想这应该是更好的解决方案。

感谢。