How to remove leading zero/es from a number string?
;==========================================================================================================================================
;
; How to remove leading zero/es from a number string?
;
;==========================================================================================================================================

strIn = "000009000"

strOut = StrSub (strIn, StrScan (strIn, "123456789", 0, @FWDSCAN), -1) ; "9000"

Exit
;==========================================================================================================================================