Combine both approaches:
case(
stringFormat("%d.%d.%d", {Tag1}, {Tag2}, {Tag3}),
"0.0.0", 0
"1.1.1", 99
...
// fallback
)
Fast(ish), because expressions, and more readable/maintainable.
Combine both approaches:
case(
stringFormat("%d.%d.%d", {Tag1}, {Tag2}, {Tag3}),
"0.0.0", 0
"1.1.1", 99
...
// fallback
)
Fast(ish), because expressions, and more readable/maintainable.