Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
 split-to-columns <column> <regex>:column 'regex'

The <column>column is split into one or more columns around matches of the specified regular expression <regex>regex.

Usage Notes

The SPLIT-TO-COLUMNS directive takes a column, applies the regular expression separator, and then creates multiple columns from the split. The name of the columns are in the format:

...

Code Block
split-to-columns :codes \|

Note: A backslash is required to escape the pipe character (|) as it is an optional separator in a regex pattern.

...