I have string value input=“027” and need to subtract 1 from this input string. So output should come as 026.
I tried assign activity like below but output will come as 26 not like as we expected.
output=(interger.parse(input)-1).tostring
Thanks in advance…