Visara Master Console Center Scripting Guide User Manual
Page 244

Appendix B Command Syntax
Scripting Guide
244
Variable Converts
uppercase
characters to lowercase.
LOWER($String)==>$Lowercase
Variable
Receives parameters into
the script.
PARMSvar1[,var3,…,[varn]…]]]
Variable
Returns a string repeated a
specified number of times.
REPSTR($String,%Count) ==>$RepeatedString
Variable Returns
the
rightmost
specified number of
characters of a string
expression.
RIGHTSTR($String,%Count) ==>$Substr
Variable
Make the contents of a
variable equal to the
specified expression.
SETVariable:=Expression
Variable
Populates an array with the
fields of a string delimited
by a string.
SPLIT($Array,$String,$Delimiter)
Variable
Converts a numeric
expression to a string.
STR(%Number) ==>$String
Variable
Extract a substring from a
character string.
SUBSTR($String,%Start[,%Count]) ==>$SubStr
Variable Removes
leading
and
trailing spaces from a
string.
TRIMSTR( $String [, %Where]) ==>$TrimmedString
Variable Converts
lowercase
characters to uppercase.
UPPER($String) ==>$UpperString
Variable
Converts a string expression
to a number.
VAL($String) ==>A%Number