billbobaggins Posted January 2, 2018 Share Posted January 2, 2018 I have a script that I've made that I want to loop 999999 times, and input a number into a text file, but I want all of the leading zeroes to remain so each loop always has six digits. For instance on each loop you may get the following: Loop 1: 000001 Loop 2: 000002 Loop3: 000003 Loop 4: 000004 All the way up to 999999, so you may eventually have 102056 etc once it gets to that part in the loop. My script so far looks like this: Global $Start = "000000" for $i=0 to 999999 Send($Start) Send("{ENTER}") Sleep(50) $Start = $Start + 1 next However it's removing the leading zeros. Is there a proper way to do this? I've tried the string formatting part of autoit but I can't seem to get it to work with my use case. Any help would be greatly appreciated! Link to comment Share on other sites More sharing options...
careca Posted January 2, 2018 Share Posted January 2, 2018 (edited) had similar issue. Edited January 2, 2018 by careca Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe Link to comment Share on other sites More sharing options...
billbobaggins Posted January 2, 2018 Author Share Posted January 2, 2018 I'm still a little bit confused as to how to solve this in my case. Tried following the examples in the provided thread but I end up incriminating how many zeros I have instead of incriminating the number by 1 while making sure it's always six digits. Link to comment Share on other sites More sharing options...
water Posted January 2, 2018 Share Posted January 2, 2018 Example: $iCount = 1 ConsoleWrite(StringFormat('%06s', $iCount) & @CRLF) $iCount = 999 ConsoleWrite(StringFormat('%06s', $iCount) & @CRLF) Earthshine 1 My UDFs and Tutorials: Spoiler UDFs: Active Directory (NEW 2024-07-28 - Version 1.6.3.0) - Download - General Help & Support - Example Scripts - Wiki ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki Task Scheduler (2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki Standard UDFs: Excel - Example Scripts - Wiki Word - Wiki Tutorials: ADO - Wiki WebDriver - Wiki Link to comment Share on other sites More sharing options...
careca Posted January 2, 2018 Share Posted January 2, 2018 25 minutes ago, billbobaggins said: incriminating the number Well, what did the number do? Earthshine 1 Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe Link to comment Share on other sites More sharing options...
Earthshine Posted January 2, 2018 Share Posted January 2, 2018 (edited) incriminating numbers always get you.... lol. increment is the word. in C/C++/C# i just use sprintf() but water answered you direct. Edited January 2, 2018 by Earthshine My resources are limited. You must ask the right questions Link to comment Share on other sites More sharing options...
billbobaggins Posted January 2, 2018 Author Share Posted January 2, 2018 1 hour ago, water said: Example: $iCount = 1 ConsoleWrite(StringFormat('%06s', $iCount) & @CRLF) $iCount = 999 ConsoleWrite(StringFormat('%06s', $iCount) & @CRLF) Excellent, this works! thank you. Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now