Adding a zero to single digit variable

前端 未结 10 2073
星月不相逢
星月不相逢 2021-01-30 05:31

Trying to add a zero before the varaible if it\'s less than 10 and create said directory. I can\'t seem to get the zero to add correctly. Keeps resulting in making 02.1.20

10条回答
  •  醉梦人生
    2021-01-30 06:11

    Your if/then statement is backwards. You are adding a 0 when it is a above 10, not adding one when it is below.

    Another bug is that you make the cutoff strictly greater than 10, which does not include 10, even though 10 is two digits.

提交回复
热议问题