pub fn nlike_utf8<O: Offset>(
    lhs: &Utf8Array<O>,
    rhs: &Utf8Array<O>
) -> Result<BooleanArray>
Available on crate feature compute_like only.
Expand description

Returns lhs NOT LIKE rhs operation on two Utf8Array.

There are two wildcards supported:

  • % - The percent sign represents zero, one, or multiple characters
  • _ - The underscore represents a single character