W8Script Functions (78)
Array functions (7)
Conversion functions (11)
Date Time functions (22)
Format functions (4)
Math functions (14)
Other functions (5)
String functions (15)
USER
W8Script Interpreter
This page contains all the built-in W8Script functions.
CATEGORIES






E-mail:
Password:

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...
2012.04.20. 14:52:56 admin

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...
2012.04.20. 14:55:51 admin

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...
2012.04.20. 15:16:08 admin

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...
2012.04.20. 14:54:43

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...
2012.04.20. 15:07:03 admin

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:<...
2012.04.20. 15:25:30 admin

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 ...
2012.04.20. 17:06:17 admin

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...
2012.04.20. 19:45:40 admin

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...
2012.04.20. 19:57:34

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 ...
2012.04.20. 20:03:26