NAME
STR$, VAL Function
SYNOPSIS
STR$(numeric-expression)
VAL(stringexpression$)
o numeric-expression Any numeric expression.
o stringexpression$ A string representation of a number.
DESCRIPTION
STR$ returns a string representation of a number.
VAL converts a string representation of a number to a number.
Example:
PRINT "Decimal 65 is represented in hexadecimal as ";
PRINT "&H" + LTRIM$(STR$(41))
PRINT VAL(RIGHT$("Microsoft 1990", 4))
SEE ALSO
none