Left$
Result = Left$ ( Arg AS String [ , Length AS Integer ] ) AS String
Result = Left ( Arg AS String [ , Length AS Integer ] ) AS String
Restituisce i primi caratteri della stringa
Arg in base alla lunghezza
Length.
Se
Length non è specificato, viene restituito il primo carattere della stringa.
Se
Length è negativo, viene restituita tutta la stringa tranne gli ultimi caratteri specificati in (-
Length ).
Left$
è ottimizzato per non generare alcuna duplicazione di stringhe.
Questa funzione riguarda solo le stringhe ASCII. Per manipolare le stringhe UTF-8, utilizzare la classe String.
Left.
Esempi
PRINT Left$("Gambas", 4)
PRINT Left$("Gambas")
PRINT Left$("Gambas", -1)
Vedi anche