Renvoie un nombre spécifié de caractères à partir de l'extrémité gauche d'une chaîne.
Syntaxe
Left(string, length)
Arguments :
Remarques
Pour déterminer le nombre de caractères dans la chaîne, utilisez la fonction Len.
Les exemples suivants utilisent la fonction Left pour renvoyer les trois premiers caractères de MyString :
Exemple 1 :
Dim MyString, LeftString MyString = "BSL" LeftString = Left(MyString, 3) ' Output: "BSL".
Exemple 2 :
Dim MyString, LeftString MyString = "HelloWorld" LeftString = Left(MyString, 5) ' Output: "Hello"
Exemple 3 :
Dim MyString, LeftString
MyString = "HelloWorld"
LeftString = Left(MyString, 0)
' Output: ("")
Exemple 4 :
Dim MyString, LeftString MyString = "Hello" LeftString = Left(MyString, 10) ' Output: "Hello"
Exemple 5 :
Dim MyString, LeftString MyString = Null LeftString = Left(MyString, 3) 'Output: Null