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 :** `[ ]`
VBScript – Statements
VBScript – Date/Heure
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
FUNCTION: Array( ) Implemented in version 2.0 Array(List) The Array function is used to create a static one-dimension array. You cannot declare a dynamic array using the Array function. Note that the first element in an array is always labeled zero, for example, myarray(0). The List argument is a listing of values that will become the…
FUNCTION: Asc() Implemented in version 1.0 Asc(String) The Asc function returns the ANSI character code value for the first character in a string. In these two examples, note that the ANSI value is returned only for the « a ». Code: <% =Asc(« abcde fghij klmno pqrst uvwxyz ») %> Output: 97 Code: <% =Asc(« a ») %> Output: 97
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