gpt4 book ai didi

.net - .NET 中的字符串格式 : convert integer to fixed width string?

转载 作者:行者123 更新时间:2023-12-03 10:31:16 24 4
gpt4 key购买 nike

我在 .NET/C# 中有一个 int,我想将其转换为特定格式的字符串。

如果值为 1,我希望字符串为“001”。

10 =“010”。

116 = "116"。

等等...

我正在查看字符串格式,但到目前为止还没有成功。我也不会有超过 999 的值。

最佳答案

看看 PadLeft .

前任:

int i = 40;

string s = i.ToString().PadLeft(3, '0');

s ==“040”

关于.net - .NET 中的字符串格式 : convert integer to fixed width string?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6399771/

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