SyntaxFix
Write A Post
Hire A Developer
Questions
Instead of Googling for %02d you should have been searching for sprintf() function.
%02d
sprintf()
%02d means "format the integer with 2 digits, left padding it with zeroes", so:
Format Data Result %02d 1 01 %02d 11 11