Function arrow_string::regexp::regexp_is_match_utf8
source ยท pub fn regexp_is_match_utf8<OffsetSize: OffsetSizeTrait>(
array: &GenericStringArray<OffsetSize>,
regex_array: &GenericStringArray<OffsetSize>,
flags_array: Option<&GenericStringArray<OffsetSize>>,
) -> Result<BooleanArray, ArrowError>
Expand description
Perform SQL array ~ regex_array
operation on StringArray
/ LargeStringArray
.
If regex_array
element has an empty value, the corresponding result value is always true.
flags_array
are optional StringArray
/ LargeStringArray
flag, which allow
special search modes, such as case insensitive and multi-line mode.
See the documentation here
for more information.