gpt4 book ai didi

具有可变空间对齐方式的 C# 字符串格式化

转载 作者:太空狗 更新时间:2023-10-30 00:56:56 25 4
gpt4 key购买 nike

我想做类似的事情

String.Format("Completed {0:9} of ",0) + xlsx.totalCount.ToString();

除了不是硬编码 9 我希望对齐方式是 xlsx.totalCount 是什么。有什么想法吗?

最佳答案

像这样尝试:

string formatString = "{0:" + xlsx.totalCount.ToString() + "}";
String.Format("Completed " + formatString + " of ", 0) + xlsx.totalCount.ToString();

关于具有可变空间对齐方式的 C# 字符串格式化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6391319/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com