btw I came up with this workaround at least to make from the above via calculated custom property
LET(ver, @"""{ }"""@,
a, REGEX_REPLACE(ver, "(^|\\.)(\\d)(\\.|$)", "${1}0${2}${3}"),
b, REGEX_REPLACE(a, "(^|\\.)(\\d)(\\.|$)", "${1}0${2}${3}"),
c, REGEX_REPLACE(b, "0(.*)", "$1"),
c
)
this changes the
etc .. feel free to experiment a bit with the regexp.s to get your desired output