pub fn regexp_is_match_utf8<OffsetSize: OffsetSizeTrait>(
array: &GenericStringArray<OffsetSize>,
regex_array: &GenericStringArray<OffsetSize>,
flags_array: Option<&GenericStringArray<OffsetSize>>,
) -> Result<BooleanArray, ArrowError>
👎Deprecated since 54.0.0: please use
regex_is_match
insteadExpand 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.