将x个出现的字符数添加到字符串的最佳/推荐方法是什么?
String header = "HEADER";
标题变量需要有,比方说100 0
,添加到它的末尾.但这个数字会根据其他因素而改变.
怎么样:
header += new string('0', 100);
当然; 如果您要进行多项操作,请考虑StringBuilder
:
StringBuilder sb = new StringBuilder("HEADER"); sb.Append('0', 100); // (actually a "fluent" API if you /really/ want...) // other manipluations/concatenations (Append) here string header = sb.ToString();
这将在字符串中追加100个零字符:
header += new string('0', 100);
怎么样
string header = "Header"; header = header.PadRight(header.Length + 100, '0');