Zoeken…


Opmerkingen

Soms moet u een tekenreeksvariabele toewijzen met een specifiek teken dat een bepaald aantal keren wordt herhaald. VBA biedt hiervoor twee hoofdfuncties:

  • String / String$
  • Space / Space$ .

Gebruik de String-functie om een string toe te wijzen met n herhaalde tekens

Dim lineOfHyphens As String
'Assign a string with 80 repeated hyphens
lineOfHyphens = String$(80, "-")

Gebruik de functies String en Space om een tekenreeks met n tekens toe te wijzen

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
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow