Nice!  😊

 

From: M100 <[email protected]> On Behalf Of John R. Hogerhuis
Sent: Sunday, July 9, 2023 9:23 PM
To: [email protected]
Subject: Re: [M100] Convert integer to string WITHOUT leading space?

 

 

Less messy... or at least faster:

 

If you know A% is always positive:

MID$(STR$(A%,2))

 

If you don't know:
MID$(STR$(A%),2+(A%<0))

 

-- John.

Reply via email to