VBA
Assigner des chaînes avec des caractères répétés
Recherche…
Remarques
Il y a des moments où vous devez assigner une variable de chaîne avec un caractère spécifique répété un nombre spécifique de fois. VBA propose deux fonctions principales à cet effet:
-
String
/String$
-
Space
/Space$
.
Utilisez la fonction String pour attribuer une chaîne avec n caractères répétés
Dim lineOfHyphens As String
'Assign a string with 80 repeated hyphens
lineOfHyphens = String$(80, "-")
Utilisez les fonctions String et Space pour attribuer une chaîne de caractères n
Dim stringOfSpaces As String
'Assign a string with 255 repeated spaces using Space$
stringOfSpaces = Space$(255)
'Assign a string with 255 repeated spaces using String$
stringOfSpaces = String$(255, " ")
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow