La fonction VBA LEFT renvoie le nombre spécifié de caractères en commençant par le côté gauche du texte.
Left(texte, numéro_caractère)
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