SPACE
Renvoie une chaîne constituée de n espaces.
Support WebVue - Oui.
Syntaxe
StrVal = SPACE(N);
Type de retour : STR
|
Argument |
Définition |
|
N |
Nombre d'espaces à retourner. Tout type numérique. |
Exécution
La chaîne résultante est limitée à 2 047 caractères.
Exemple
SUB Main()
'Declare return code
DIM intCharCode as integer;
DIM strChaine as Str;
strChaine = SPACE(10);
PRINT("Contents of string: ",strChaine);
END SUB