
PT-Basic Programming Manual Ver. 1.00 27/143
To return a copy of a string in which all lowercase letters will
be converted to uppercase letters.
Str$="abcdeFG"
PRINT UCASE$(Str$)
PRINT UCASE$("168BBqRrGgIbB")
A$ is a string variable to be assigned to the result.
Str$ may be a string variable, string expression, or string
constant.
To convert a numeric expression to a string.
A$ = STR$(N%) or
A$ = STR$(N!)
Str$=STR$(168)
PRINT Str$
A$ is a string variable to be assigned to the result.
N% is a numeric expression.
To return the numeric value of a string expression in interger
form.
A% is an integer variable to be assigned to the result.
Str$ is a string that includes numeric characters.If the first
character is not numeric, this command return 0.
To convert a string expression to a real number.
A! is real number variable to be assigned to the result.
Str$ is a string that includes numeric characters. The
precision of converted result is governed by the command
SET_PRECISION.
Comentários a estes Manuais