When I use the {CURRENT_DAY}, {CURRENT_MONTH}, {CURRENT_HOURS} etc. I would very much like the system to add leading zeros, if the day number, month number and hours number < 10.
The date format I use is: dd.mm.yyyy hh:mm
Depending on the actual date/time I sometimes get: d.m.yyyy h:m
2 answers
Hi Ulrich, the reason why those properties do not have padding 0 is that they are numbers instead of text strings.
I think maybe another set of properties, which have “String” type could have this requirement covered. Like these:
{CURRENT_DAY0}
{CURRENT_MONTH0}
{CURRENT_YEAR0}
{CURRENT_HOURS0}
{CURRENT_MINUTES0}
{CURRENT_SECONDS0}
This question is now closed