You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parse short date formats without an explicit separator? For example, 010123 => 01.01.2023. With the whole year it works as expected: 01012023 => 01.01.2023
My actual thought process would be ddMMyy but according to the Unicode Documentation:
However, "yy" requests just the two low-order digits of the year, zero-padded as necessary.
So the Unicode tokens would reference the year 0023 instead of 2023.
My question is how can I adjust this context to get this desired behavior?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
parse short date formats without an explicit separator? For example,
010123
=>01.01.2023
. With the whole year it works as expected:01012023
=>01.01.2023
My actual thought process would be ddMMyy but according to the Unicode Documentation:
So the Unicode tokens would reference the year
0023
instead of2023
.My question is how can I adjust this context to get this desired behavior?
Beta Was this translation helpful? Give feedback.
All reactions