Tracks with 3 digit format: 001

I would like all my ytracks to have the format 001,002,003...., but when in the track numbering assistant I ask it to start with track number 001, MP3 Tag automatically makes it a 2 digit track: 01,02,03...
Could anybody assist?

Thank you
Alex

After you have used the track numbering assistant apply the function
Convert>Tag-Tag for the field TRACK
Format string: $num(%track%,3)

Please note that Windows interprets 3-digit-numbers as octal values. So most likely Windows will show track 8 and 10 as 8, 9and 11 as 9, 12 as10, 13 as 11 and so on.

Also a look at the help would have helped
:

Pad decimal number with leading zeros

Command: $num(x,y)
Example: $num(%track%,3)
This example returns the track number with three digits.

So apologies if this is the wrong thing to do, but as google and the community search leads me here, searching for "3 digit" I suspect others will find this too.

I want to do something similar, but for albums.

So when the album series first came out it was

Album 1, Album 2, etc.

However the series is very popular and now is Album 101

However we all know that windows search is bad for this, so what I would like to do is that all the albums are

Album 001

Album 010

Album 100 etc

So all are 3 digits.

In this case they are the DJ Beats series from Mastermix,

So start with DJ Beats Volume 1, Volume 2, etc.

I've removed that, with a regex, so it's now DJ Beats 1 DJ Beats 2 etc, but would love for them all to be consistent, could I get some help please?

Try an action of the type "Format value" or use Convert>Tag-Tag for ALBUM
Format string: $regexp(%album%,(.*) (\d+),$1) $num($regexp(%album%,(.*) (\d+),$2),3)