Numerical conversion
String and numerical variables are interchangeable without conversion. You can therefore directly assign the value in both directions.VARINT := VARSTR;
if VARSTR contains a number it will be assigned to VARINT.
if VARSTR is not a valid number VARINT goes to -1VARSTR := VARINT;
VARINT is converted into a string and assigned to VARSTR