|
| KiXtart 2001 Manual |
Split( )
| Action: | Returns a zero-based, one-dimensional array containing a specified number of
substrings. |
| Syntax: | SPLIT
(“string”, “delimiter”, count) |
| Parameters: |
String
Delimiter
Count
|
| Remarks: |
The Split function doesn't actually create a
variable -- all it does is create an array, and the parser copies that back
into whatever variable the result is being assigned to. Therefore, if you
want Split to populate an array and have that array's contents available
outside the current scope, you must make the variable/array global prior to
populating it with the split function (Example 2).
|
| Returns: |
An array containing the substrings found in the input string. |
| See Also: |
UBound(
) |
| Examples: |
; Example 1:
; Example 2: |