How to use zero padding in string which is combined with another character? I search for some example but they just show me string in number format.
For Example :
"000001" //Only number withount any character
I need zero padding for combined character
For example :
ABC000001 //This is inital value
Then I do a operation to incrase the initial value. So it will be :
ABC000002
But when I reach "ABC000009". The result must be "ABC000010".
Any answer would be appreciated