TOP

Fonction VBA : Right

Description

La fonction VBA RIGHT renvoie le nombre spécifié de caractères dans une chaîne, en commençant par la droite.


Syntaxe RIGHT

Right(texte, numéro_caractère)

Exemple VBA Right

Obtenons un nombre différent de caractères à partir de la chaîne donnée, en commençant par le côté droit :

Sub RightExample()
    
      MsgBox Right("www.moonexcel.com.ua", 1)  'Retours : a
      MsgBox Right("www.moonexcel.com.ua", 2)  'Retours : ua
      MsgBox Right("www.moonexcel.com.ua", 3)  'Retours : .ua
      MsgBox Right("www.moonexcel.com.ua", 4)  'Retours : m.ua
      MsgBox Right("www.moonexcel.com.ua", 5)  'Retours : om.ua
      MsgBox Right("www.moonexcel.com.ua", 10) 'Retours : cel.com.ua
      MsgBox Right("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 gauche est la fonction LEFT.
Pour récupérer des caractères à l'intérieur d'une chaîne, vous pouvez utiliser la fonction MID.