Integrated Application Platform › Forums › General › convert string to int › Reply To: convert string to int
March 23, 2019 at 1:40 pm
#1453
Keymaster
SHORT is part of the DLL interface – probably not what you want.
You can use Number to convert strings to numbers.
e.g. Number(“5”) + 2 => 7
Similarly, you can use String to convert the other way.
e.g. String(5) => “5”