TOP

Funzione VBA: Left

Descrizione

La funzione VBA LEFT restituisce il numero di caratteri specificato a partire dal lato sinistro del testo.


Sintassi LEFT

Left(testo, numero_carattere)

Esempio VBA Left

Ottieni diversi numeri di caratteri partendo da sinistra:

Sub LeftExample()
    
      MsgBox Left("www.moonexcel.com.ua", 1)  'Resi: w
      MsgBox Left("www.moonexcel.com.ua", 2)  'Resi: ww
      MsgBox Left("www.moonexcel.com.ua", 3)  'Resi: www
      MsgBox Left("www.moonexcel.com.ua", 4)  'Resi: www.
      MsgBox Left("www.moonexcel.com.ua", 5)  'Resi: www.m
      MsgBox Left("www.moonexcel.com.ua", 10) 'Resi: www.moonex
      MsgBox Left("www.moonexcel.com.ua", 50) 'Resi: www.moonexcel.com.ua

End Sub
La funzione che restituisce il numero specificato di caratteri da destra è RIGHT.
Per ottenere i caratteri dal centro di una stringa, puoi utilizzare la funzione MID.