(self, pat: str, flags: int = 0)
| 2810 | return type(self)(pc.struct_field(result, [0])) |
| 2811 | |
| 2812 | def _str_findall(self, pat: str, flags: int = 0) -> Self: |
| 2813 | regex = re.compile(pat, flags=flags) |
| 2814 | predicate = lambda val: regex.findall(val) |
| 2815 | result = self._apply_elementwise(predicate) |
| 2816 | return self._from_pyarrow_array(pa.chunked_array(result)) |
| 2817 | |
| 2818 | def _str_get_dummies(self, sep: str = "|", dtype: NpDtype | None = None): |
| 2819 | if dtype is None: |
nothing calls this directly
no test coverage detected