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 – Conversion
METHOD: FileSystemObject.BuildPath Implemented in version 2.0 [newfullpath = ]object.BuildPath(path, name) This method is used to append a name onto an existing path. The format of the new path is ‘existingpath\name’. Code: <% dim filesys, newfullpath set filesys=CreateObject(« Scripting.FileSystemObject ») newfullpath = filesys.BuildPath(c:\inetpub\wwwroot, « images ») %> Output: « c:\inetpub\wwwroot\images »
VBScript – Formatage
OPERATOR: = Implemented in version 1.0 = The operator is used to assign a value to a variable, or to compare strings and numbers, or to print out the value of a variable. When used for assignment, a single variable on the left side of the = operator is given the value determined by one…
WSH – WshShell
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