Symantec WISESCRIPT EDITOR 8.0 - REFERENCE FOR WISE PACKAGE STUDIO V1.0 Reference page 164

Table of Contents

Advertisement

WiseScript Editor Reference
Right$(str,position)
Mid$(str,position,
length)
Concat$(str1,str2)
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
Returns the right portion of a string, where str is the
string, and position is the number of characters from the
right to return. Example: Right$("windows",3) returns
"ows."
Returns the middle portion of a string, where str is the
string, position is the number of characters from the left to
start, and length is the number of characters to return.
Example: Mid$("windows",2,3) returns "ind."
Joins two strings.
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
Quick Reference
164

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the WISESCRIPT EDITOR 8.0 - REFERENCE FOR WISE PACKAGE STUDIO V1.0 and is the answer not in the manual?

This manual is also suitable for:

Wisescript editor 8.0

Table of Contents

Save PDF