I need the following:
Is there a simple way to do this?
With kind regards Remco
I need the following:
Is there a simple way to do this?
With kind regards Remco
You could use a string searcher to find attributes with two numbers (search for regex \\d{2} ), you could then add the 0 at the front for any non-matches
Alternatively, this conditional value setting could also work for you.
If @Value(input) Contains Regex ^\d\D*$
Then 0@Value(input)
Else @Value(input)