gpt4 book ai didi

c# - 生成 6 位数字

转载 作者:太空宇宙 更新时间:2023-11-03 17:25:50 28 4
gpt4 key购买 nike

我正在从数据库中检索一些记录,并将其附加到某个字符串中 - 例如:

spouse counter=1;
counter=1+counter;

然后我通过以下方式获得customerID:

customerID = "AGP-00000" + counter;

因此 customerID 将为 AGP-000001

对于计数器值 2 - customerID 字符串将为 AGP-000002

我的问题是,如果计数器是 10 那么 customer ID 将是 AGP-0000010,我希望它是 AGP-000010.

如何确保客户 ID 始终如 AGP-000010

最佳答案

int  number = 1;
string customerID = "AGP-" + number.ToString("D6");

客户 ID 将为:"AGP-000001"

参见:How to: Pad a Number with Leading Zeros

关于c# - 生成 6 位数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15655084/

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