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 under the hood
SELECT *, SUBSTRING(email, 1, POSITION('@' IN email) - 1) AS username FROM data
Try this operation →

Related Operations