Padzero in VEX

In HScript you have a function that will pad out a number with zeros, commonly used for frame numbering on renders or caches. padzero(4,number) VEX does not have that same function, but it does have something very similar when setup correctly. sprintf(“%*0d”,4,number);