vbscript-less-than
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
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
VBScript – Statements
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…
WSH – WScript
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
VBScript – Math