vbscript-greater-than or equal
OPERATOR: >=
Implemented in version 1.0
>=
The >= operator determines if the first expression is greater-than-or-equal the second expression.
Code:
<% 123 >= 456 %>
<% « a » >= « A » %>
Output:
False
True
OPERATOR: >=
Implemented in version 1.0
>=
The >= operator determines if the first expression is greater-than-or-equal the second expression.
Code:
<% 123 >= 456 %>
<% « a » >= « A » %>
Output:
False
True
WSH/FSO – Fichiers
WSH/FSO – Fichiers
WSH – WScript
Property: TextStream.AtEndOfLine Implemented in version 2.0 object.AtEndOfLine The AtEndOfLine property returns a Boolean value. If the file pointer is positioned immediately before the file’s end-of-line marker, the value is True. Otherwise, the value is False. The TextStream object must be open for reading or an error will occur when retreiving this property this method. The…
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
VBScript – Date/Heure