Skip to main content

Table.tokenize_to_rows

tokenize_to_rowscolumnpatterncase_sensitivityat_least_one_row

Group: Conversions

Documentation

Creates a new Table with the chosen column of Text split by the pattern regular expression into a set of new rows. 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 rows.

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.
  • at_least_one_row: If True, a tokenization that returns no values will still produce at least one row, with Nothing for the output column values. Equivalent to converting a tokenization output of [] to [Nothing].