Jump to content

Leading Zeros


Recommended Posts

Say I have an entry into a file and it is 0000014. 7 Digits with 5 0's.

I want the next one to say 0000015.

I tried adding 1 to the 0000014 but it just comes out 15 because Autoit chops off the leading zeros. How Do I have it keep the 5 0's until it reaches 100 which then I would only need 4??

Link to comment
Share on other sites

Say I have an entry into a file and it is 0000014. 7 Digits with 5 0's.

I want the next one to say 0000015.

I tried adding 1 to the 0000014 but it just comes out 15 because Autoit chops off the leading zeros. How Do I have it keep the 5 0's until it reaches 100 which then I would only need 4??

You want StringFormat():

$iVar = 14
$sVar = StringFormat("%07u", $iVar)
MsgBox(64, "Result", "$iVar = " & $iVar & ", and $sVar = " & $sVar)

:D

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...