Extract Text

Extract text patterns from a column

What It Does

Extract Text pulls out parts of text using various methods: by position, before/after a delimiter, between delimiters, or with regex patterns.

How to Use It

Opening the Panel

Click the + button in the toolbar or press the operation picker, then search for "Extract Text". It's in the Transform group.

Configuration

FieldTypeRequiredDescription
ColumnColumn selectYesThe column to extract from
MethodSelectYesposition, starts_with, ends_with, before_delimiter, after_delimiter, between_delimiters, contains_number, regex

SQL Generated

SELECT *, SUBSTRING(email, 1, POSITION('@' IN email) - 1) AS username FROM data
Try this operation →

Notes

  • Null values are handled gracefully - operations skip or preserve nulls where appropriate.
  • You can edit any pipeline step by clicking on its card to re-open the panel with the same settings.
  • The SQL preview shows exactly what will execute - inspect it before applying.

Related Operations