<Complete VBScript Référence
La fonction de chaîne renvoie une chaîne qui contient un caractère répétitif d'une longueur spécifiée.
Syntaxe
String(number,character)
Paramètre | La description |
---|---|
number | Champs obligatoires. La longueur de la chaîne retournée |
character | Champs obligatoires. Le caractère qui sera répété |
Exemple 1
response.write(String(10,"#"))
Output:
##########
exemple 2
response.write(String(4,"*"))
Output:
****
exemple 3
response.write(String(4,42))
Output:
****
exemple 4
response.write(String(4,"XYZ"))
Output:
XXXX
<Complete VBScript Référence