Str$
Cadena = Str$ ( Expresión )
Cadena = Str ( Expresión )
Convierte una expresión en su representación en texto. Es el opuesto exacto a
Val.
Esta función utiliza los parametros de localización actuales para convertir números y fechas.
Examples
' Para mostrar en la salida estándar o en un mensaje
PUBLIC CONST ON_STDOUT AS Integer = 1
PUBLIC CONST ON_MESSAGE AS Integer = 2
SUB PrintOn(Where AS Integer, What AS Variant)
IF Where = ON_STDOUT THEN
PRINT What
ELSE IF Where = ON_MESSAGE THEN
Message(Str$(What))
ENDIF
END
Véase también