Command-Line Options
WiseScript Editor Reference
Instr(str1,str2)
Before$(str1,str2)
After$(str1,str2)
Len(str)
Lcase$(str)
Ucase$(str)
Ltrim$(str)
Rtrim$(str)
Logical Operators
Logical
Example
Operator
And
A And B
Or
A Or B
Not
A Not B
>
X>Y
<
X<Y
>=
X>=Y
<=
X<=Y
=
X=Y
<>
X<>Y
You can set command-line options when you run WiseScript Editor, the installation
executable, and the uninstaller executable. These are especially useful for running an
installation as part of a batch file or other automated installation system.
If you compile from the command line, compile errors generate return codes. To see the
error message associated with the return code, run the compile directly from WiseScript
Editor. When compile errors occur, a dialog box appears during compile with a specific
error message.
Determines if a substring (str2) is present within an
original string (str1). Do not include the $ character
because this operator does not return a string.
Returns the portion of a string (str1) before the indicated
substring (str2). Example: Before$("windows","d") returns
"win."
Returns the portion of a string (str1) after the indicated
substring (str2). Example: After$("windows","d") returns
"ows."
Returns the length of a given string. Do not include the $
character because this operator does not return a string.
Converts all characters in a string to lowercase.
Converts all characters in a string to uppercase.
Deletes all leading spaces.
Deletes all trailing spaces.
Description
True only if expression A and B are both true
True if either expression, A or B, is true, or if both A and
B are true
True only if one expression is true. Example: A but not B
True if expression X is numerically greater than Y
True if expression X is numerically less than Y
True if expression X is numerically greater than or equal
to Y
True if expression X is numerically less than or equal to
Y
True if expression X is numerically equal to Y
True if expression X is not numerically equal to Y
138
Need help?
Do you have a question about the WISESCRIPT EDITOR 7.0 SP2 - FOR NS V1.0 and is the answer not in the manual?