I have an integer 100, how do I format it to look like 00000100 (always 8 digits long)?
| ||||
feedback
|
|
Try this:
| |||
|
feedback
|
|
You can also use the class
| |||
|
feedback
|
|
Yet another way. ;)
-1 => 99999999 (nines complement)
| |||||||||||
feedback
|
|
This also works:
But the other examples are much easier. | |||
|
feedback
|
|
If you need to parse this string and or support i18n consider extending the
object. Use the other answers to help you get the format. | |||
|
feedback
|
|
If you just need to print it out, this is a shorter version:
| |||
|
feedback
|