Str$
Stringa = Str$ ( Espressione )
Stringa = Str ( Espressione )
Converte un'espressione all'interno di una stringa in modo intellegibile. E' l'esatto contrario di
Val.
Attenzione! La conversione, utilizza la corrente localizzazione per convertire numeri e date.
Esempio
' Stampa sull'uscita predefinita o in un messaggio.
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
Vedi anche