标签: c# c++ string-formatting
c#中的格式占位符等价是什么( string.Format(“{0:??}”)其中'??'是占位符,我问)“%06d < / em>的“?
printf("%06d",number);
答案 0 :(得分:3)
这可能会对你有帮助。
string st = string.Format("{0:000000} and {1:000000}", 123 ,456); //st => 000123 and 000456