Ugrás a fő tartalomhoz
Verzió: 15

EXPLODE

Chops up a string with the given separator character and stores the parts in an array.

Description

Chops up a string with the given separator character and stores the parts in an array. The delimiter will not be included in the outputs.

Syntax

EXPLODE [String] [Delimiter] [Output array]

Command parameters

Command parameterAssignmentValue formatInput options
StringRequiredStringLocal, variable
DelimiterRequiredStringLocal, variable
Output arrayRequiredStringLocal, variable

String:

The string that will be chopped up.

Delimiter:

The separator character.

Output array:

The array that will store the resulting parts.

Sample code

EXPLODE 123;456;789 ; Output_Array