Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
(def s (format "%03d" i))
string s = string.Format("{0:000}",i);
var s = i.toString().padLeft(3,'0');
write (unit=s,fmt='(I0.3)') i
let s = i.toString();
if(i<100)
s = ('00'+i).slice(-3);
String s = String.format("%03d", i);
String s = "%03d".formatted(i);
string.format("%03d", i)
$s = sprintf('%03d', $i);
s := format('%.3d',[i]);
my $s = sprintf '%03d', $i;
s = format(i, '03d')
s = "%03d" % i
let s = format!("{:03}", i);