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`
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 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 – WshNetwork
Property: TextStream.AtEndOfStream Implemented in version 2.0 object.AtEndOfStream The AtEndOfStream property returns a Boolean value. If the file pointer is positioned at the end of the file, the value is True. Otherwise, the value is False. The TextStreamobject must be open for reading or an error will occur when using this method. The following code uses…
VBScript – Math
VBScript – I/O