Skip to content

regexp_replace

function regexp_replace(
column,
pattern,
replacement): Column;

Defined in: functions/string.ts:80

Replaces all substrings that match the regex pattern with the replacement. pattern and replacement accept a Column (per-row values) or a string literal.

Parameter Type
column ColOrName
pattern string | Column
replacement string | Column

Column