pyarrow.compute.match_substring¶
-
pyarrow.compute.
match_substring
(array, pattern, *, ignore_case=False)[source]¶ Test if substring pattern is contained within a value of a string array.
- Parameters
array (pyarrow.Array or pyarrow.ChunkedArray) –
pattern (str) – pattern to search for exact matches
ignore_case (bool, default False) – Ignore case while searching.
- Returns
result (pyarrow.Array or pyarrow.ChunkedArray)