Pase Date/Time in Chain
已回答Hello,
I am trying to figure out if it is possible to parse a date/time variable in a chain to reflect a single digit month. I see that %m is a two-digit month in the documentation provided by Workiva but cannot find any information to indicate that a single digit month can be utilized.
0
-
Hi Talia. You could transform the value with a regular expression. For example: ^0?([1-9]|1[0-2])$ will transform 01 through 09 to single digit. You can test it out here https://regex101.com/r/E7mSVF/1.
0
评论
2 条评论