
|
W8Script Array Function W8Script Functions → Array functions The Array function returns a variant containing an array. Note: The first element in the array is zero. Syntax: Array(arglist) ▪ arglist - Required. A list (separated by com... |
|
W8Script Filter Function W8Script Functions → Array functions The Filter function returns a zero-based array that contains a subset of a string array based on a filter criteria. Note: If no matches of the value parameter are found, the Filter function w... |
|
W8Script IsArray Function W8Script Functions → Array functions The IsArray function returns a Boolean value that indicates whether a specified variable is an array. If the variable is an array, it returns True, otherwise, it returns False. Syntax: IsAr... |
|
W8Script Join Function W8Script Functions → Array functions The Join function returns a string that consists of a number of substrings in an array. Syntax: Join(list, delimiter) ▪ list - Required. A one-dimensional array that contains the su... |
|
W8Script LBound Function W8Script Functions → Array functions The LBound function returns the smallest subscript for the indicated dimension of an array. Note: The LBound for any dimension is ALWAYS 0. Tip: Use the LBound function with the UBound... |
|
W8Script UBound Function W8Script Functions → Array functions The UBound function returns the largest subscript for the indicated dimension of an array. Tip: Use the UBound function with the LBound function to determine the size of an array. Syntax:<... |
|
W8Script Split Function W8Script Functions → Array functions The Split function returns a zero-based, one-dimensional array that contains a specified number of substrings. Syntax: Split(expression , delimiter , count , compare) ▪ expression ... |
|
W8Script Asc Function W8Script Functions → Conversion functions The Asc function converts the first character in a string to ANSI code, and returns the result. Syntax: Asc(string) ▪ string - Required. A string expression. Cannot be an empty stri... |
|
W8Script CBool Function W8Script Functions → Conversion functions The CBool function converts an expression to type Boolean. The expression must be a numeric value. Syntax: CBool(expression) ▪ expression - Required. Any valid expression. A nonzero... |
|
W8Script CByte Function W8Script Functions → Conversion functions The CByte function converts an expression to type Byte. The expression must be a number between 0 and 255 Syntax: CByte(expression) ▪ expression - Required. Any valid expression ... |
