gpt4 book ai didi

c# - 如何获取数组的计数?在C#

转载 作者:行者123 更新时间:2023-11-30 19:03:21 24 4
gpt4 key购买 nike

char[] charArray = startno.ToCharArray();
//using this arry
//i want to cheque this

int i=0;
count = 0;
while (chenum [i] != "0")
{
count++;
i++;
}
string s = "0";
string zero = "0";
for (i = 1; i <= count; i++)
{
s = s + zero;
}

你能帮我更正这段代码吗...例如:(00001101) 我需要用 1 添加这个 no。为此,我想将此值转换为 int。如果我转换为 int,则 no 将是 (1101)+1 no 将是 (1102)。添加后我想要答案 (00001102)。

最佳答案

你想要多少个零??你可以使用 string.pad

int count = 1102;
int NumOfZeros = 10;
string s = count.ToString().PadLeft(NumOfZeros, '0');

还有数字格式化程序。

count.ToString("D10");

关于c# - 如何获取数组的计数?在C#,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5176829/

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