Posts: 229
Threads: 22
Joined: Sep 2007
When using this it will drop all, 0's at the beginning no matter how many before.
How can i get it not to drop the 0's
Thanks.
str a = "001"
int b = val(a)
str c = "003"
int d = val(c)
out b+d
Posts: 12,071
Threads: 140
Joined: Dec 2002
Macro
str a = "001"
int b = val(a)
str c = "003"
int d = val(c)
out "%03i" b+d
Posts: 229
Threads: 22
Joined: Sep 2007