Table.tokenize_to_columns
tokenize_to_columnscolumnpatterncase_sensitivitycolumn_count on_problems
Group: Conversions
Documentation
Creates a new Table with the chosen column of Text split by the pattern
regular expression into a set of new columns. If the pattern contains marked groups, the values are concatenated together; otherwise the whole match is returned. The values of other columns are repeated for the new rows. For details on Enso's Regex syntax, see the Help Documentation.
Returns - Returns a Table with the newly split columns.
Arguments
column
: The name or index of the column to tokenize the text of.pattern
: The pattern used to find within the text.case_sensitivity
: Specifies if the text values should be compared case sensitively.column_count
: The number of columns to split to. IfNothing
then columns will be added to fit all data.on_problems
: Specifies the behavior when a problem occurs.
Errors
- If the data exceeds the
column_count
, aColumn_Count_Exceeded
will be reported according to theon_problems
behavior.