vbscript – Day
**FUNCTION:** `Day(date)`
**Description**
Extrait le jour du mois.
**Syntax**
`Day(date)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Day(Now)
« `
**Output :** `9`
**FUNCTION:** `Day(date)`
**Description**
Extrait le jour du mois.
**Syntax**
`Day(date)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Day(Now)
« `
**Output :** `9`
VBScript – Statements
WSH/FSO – Fichiers
STATEMENT: Dim Implemented in version 1.0 Dim The Dim statement allows you to explicitly declare one or more new variables and to allocate storage (memory) space. While you do not have to use Dim to create new variables in VBScript, the wise programmer prefers to use Dim. In fact, many programmer purposely include theOption Explicit statement in all of their VBScript…
OPERATOR: & Implemented in version 1.0 & The & operator is the preferred operator for concatenating strings. However, the + operator may also be used for concatenation. Code: <% cheese= » is made of blue cheese. » %> <% sentence= »The moon » & cheese & » Mice like blue cheese. » %> Output: The moon is made of blue…
VBScript – Statements
WSH/FSO – Expressions régulières