Method: Polars::StringExpr#extract_groups
- Defined in:
- lib/polars/string_expr.rb
#extract_groups(pattern) ⇒ Expr
Extract all capture groups for the given regex pattern.
1190 1191 1192 |
# File 'lib/polars/string_expr.rb', line 1190 def extract_groups(pattern) Utils.wrap_expr(_rbexpr.str_extract_groups(pattern)) end |