diff --git a/py-polars/polars/expr/string.py b/py-polars/polars/expr/string.py index 09f7c96dac0c..e94f995ee700 100644 --- a/py-polars/polars/expr/string.py +++ b/py-polars/polars/expr/string.py @@ -2790,16 +2790,16 @@ def escape_regex(self) -> Expr: >>> df = pl.DataFrame({"text": ["abc", "def", None, "abc(\\w+)"]}) >>> df.with_columns(pl.col("text").str.escape_regex().alias("escaped")) shape: (4, 2) - ┌──────────┬──────────┐ - │ text ┆ escaped │ - │ --- ┆ --- │ - │ str ┆ str │ - ╞══════════╪══════════╡ - │ abc ┆ abc │ - │ def ┆ def │ - │ null ┆ null │ - │ abc(\w+) ┆ abc(\w+) │ - └──────────┴──────────┘ + ┌──────────┬──────────────┐ + │ text ┆ escaped │ + │ --- ┆ --- │ + │ str ┆ str │ + ╞══════════╪══════════════╡ + │ abc ┆ abc │ + │ def ┆ def │ + │ null ┆ null │ + │ abc(\w+) ┆ abc\(\\w\+\) │ + └──────────┴──────────────┘ """ return wrap_expr(self._pyexpr.str_escape_regex())