Nice!  😊

 

From: M100 <m100-boun...@lists.bitchin100.com> On Behalf Of John R. Hogerhuis
Sent: Sunday, July 9, 2023 9:23 PM
To: m...@bitchin100.com
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