TOP

Fonction VBA : Left

Description

La fonction VBA LEFT renvoie le nombre spécifié de caractères en commençant par le côté gauche du texte.


Syntaxe LEFT

Left(texte, numéro_caractère)

Exemple VBA Left

Obtenez différents nombres de caractères en commençant par la gauche :

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

End Sub
La fonction qui renvoie le nombre spécifié de caractères en partant de la droite est la fonction RIGHT.
Pour récupérer les caractères du milieu d'une chaîne, vous pouvez utiliser la fonction MID.