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
OPERATOR: <> Implemented in version 1.0 <> The <> operator is called the not equal or inequality operator. Code: <% If 128 <> 777 Then Response.Write(« Not equal ») End If %> Output: Not equal
WSH – WshShell
VBScript – Statements
WSH – WshShell
FUNCTION: Abs() Implemented in version 1.0 Abs(Number) The Abs function returns the absolute value for a number. Negative numbers become positive. Positive numbers remain positive. Code: <% =Abs(-127.89) %> Output: 127.89 Code: <% =Abs(127.89) %> Output: 127.89