For further information see: http://www.winguides.com/scripting
Array() - Create an Array
The Array() function creates an array using the supplied comma-delimited values as data elements.
Eval() - Evaluates an Expression
The Eval() function evaluates an expression and return the result.
Filter() - Filter a String Array
The Filter() function returns a subset of a string array based on a specified filter criteria.
Join() - Join Array Elements with a String
The Join() function converts the elements of an array into a string using a custom delimiter.
LBound() - Determines the first element of an array
The Lbound() functions is used to determine the smallest available subscript for the specified dimension of an array.
LCase() - Makes a String Lowercase
The LCase() function transforms a mixed case string into a string containing all lowercase characters.
Option Explicit - Forces explicit declaration of all variables
Using the Option Explicit statement means you must explicitly declare all variables before use. This helps avoid situations of misspelled or non-existent variables causing unexpected results. (The Commando Script Default is "Option Explicit")
Split() - Split a String into an Array
The Split() function converts a delimitered string into an array of substrings.
TypeName() - Return Variable Subtype Name
The TypeName() function returns the name representing the subtype of the supplied variable.
UBound() - Determines the last element of an array
The Ubound() functions is used to determine the largest available subscript for the specified dimension of an array.
UCase() - Makes a String Uppercase
The UCase() function transforms a mixed case string into a string containing all uppercase characters.
VarType() - Returns Variable Subtype
The VarType() function returns a value indicating the subtype of the supplied variable.
|