Skip to content

Int

Object that creates an integer from n.

Forms

int Int[n]

Parses whatever value for n is provided and converts it into an int.

Examples

/echo ${Int[123].Hex}

Echos the result of the conversion of 123 to an int in hexadecimal.

/echo ${Int[textstringhere]}

Echos a zero - useful if passing a string to a macro or subroutine that could be a text string or a number and you want to do different actions depending on what you recieve

/echo ${Int[123]}

Echos 123