STR$(n)
STR$ (n, d)
{* Applicable only to M+ PLC models}
Purpose | To return a string that represents the decimal value of the numeric argument n. If the second format is used then this function will return a string of d number of characters. |
Examples | A$ = STR$(-1234) B$ = STR$(-1234,7) |
Comments: | A$ will contain the string : "-1234" , B$ will contain the string "-001234" |
See Also: | VAL, HEX$(n), HEXVAL(x$) |