Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Contents
minLevel1
maxLevel6
outlinefalse
typeflat
printablefalse

The splitArray operator splits the array that you want to split into rows.

...

The input table displays the following array column, let's say input table = InputData

arrayCol

WrappedArray(1, 2)

WrappedArray(3, 4)

When you apply the splitArray operator, the output is shown as follows:

...

The output table displays the following split array column.

arrayCol

splitted

WrappedArray(1, 2)

1

WrappedArray(1, 2)

2

WrappedArray(3, 4)

3

WrappedArray(3, 4)

4