Which AsString(Value) subtype will add a leading zero to values < 10?

I swear I’ve tried all of them and maybe I’ve missed one…but, like the title says, which AsString(Value) subtype will add a leading zero to values < 10?

meaning, I’m trying to go:

3 (value) --> AsString(Value) --> 03 (string)

but also have values > 10 stay as two digit values, so

23 (value) --> AsString(Value) --> 23 (string)

Luckily, I don’t have to worry about anything in the three digit range.

Or…if AsString isn’t the right node, which one is?

Thanks!

FormatValue (String) is your friend.