vbscript – Time
**FUNCTION:** `Time()`
**Description**
Retourne l’heure courante (sans la date).
**Syntax**
`Time()`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Time
« `
**Output :** `heure courante`
**FUNCTION:** `Time()`
**Description**
Retourne l’heure courante (sans la date).
**Syntax**
`Time()`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Time
« `
**Output :** `heure courante`
WSH/FSO – Expressions régulières
WSH/FSO – Fichiers
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 – Collections
FUNCTION: CDate( ) Implemented in version 1.0 You can determine the expression subtype by using the function VarType( ). CDate(Date) The CDate function converts any valid date and time expression to the variant of subtype Date. The default date output will be of the format: **/**/** The default time output will be of the format: **:**:** *M…
STATEMENT: ‘ Implemented in version 1.0 ‘ The ‘ statement allows you to insert comments into your code. Code: <% ‘ This is one of two ways to comment in VBScript %> <% Rem This is the other way %>