Hello,
Is there a way to convert an Int to String but where I can control the length of the string?
For example, for length = 2 I would get:
1 ->> "01"
2 ->> "02"
23 ->> "23"
I am sure my number will have always two digits.
Thanks,
Miguel
View the full article
Is there a way to convert an Int to String but where I can control the length of the string?
For example, for length = 2 I would get:
1 ->> "01"
2 ->> "02"
23 ->> "23"
I am sure my number will have always two digits.
Thanks,
Miguel
View the full article