我正在从数据库中检索一些记录,并将它们附加到一些字符串中 - 例如:
spouse counter=1;
counter=1+counter;
然后我通过customerID
以下方式获得:
customerID = "AGP-00000" + counter;
这样customerID
就可以了AGP-000001
。
对于计数器值2
-customerID
字符串将是AGP-000002
.
我的问题是,如果 counter is 10
then customer ID
will be AGP-0000010
,我希望它是AGP-000010
。
我怎样才能确保customer ID
总是这样AGP-000010
?