Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
regexp_is_match_utf8 in datafusion::common::arrow::compute - Rust
[go: Go Back, main page]

pub fn regexp_is_match_utf8<OffsetSize>(
    array: &GenericByteArray<GenericStringType<OffsetSize>>,
    regex_array: &GenericByteArray<GenericStringType<OffsetSize>>,
    flags_array: Option<&GenericByteArray<GenericStringType<OffsetSize>>>
) -> Result<BooleanArray, ArrowError>
where OffsetSize: OffsetSizeTrait,
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.