vbscript – Space
**FUNCTION:** `Space(number)`
**Description**
Crée une chaîne de N espaces.
**Syntax**
`Space(number)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo « [ » & Space(3) & « ] »
« `
**Output :** `[ ]`
**FUNCTION:** `Space(number)`
**Description**
Crée une chaîne de N espaces.
**Syntax**
`Space(number)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo « [ » & Space(3) & « ] »
« `
**Output :** `[ ]`
WSH – WshShell
OPERATOR: > Implemented in version 1.0 > The > operator determines if the first expression is greater-than the second expression. Code: <% 123 > 456 %> <% « a » > « A » %> Output: False True
OPERATOR: / Implemented in version 1.0 / The / operator divides two numbers and returns a floating-point number. Code: <% result = 25.0 / 4.975 %> Output: 5.0251256281407 Code: <% result = 25 / 5 %> Output: 5
WSH/FSO – Fichiers
VBScript – Date/Heure
OPERATOR: < Implemented in version 1.0 < The < operator determines if the first expression is less-than the second expression. Code: <% 123 < 456 %> <% « a » < « A » %> Output: True False