fn like_utf8(s: &str, pattern: &str, case_insensitive: &bool) -> Option<bool>
Expand description
Perform SQL left LIKE right, return None
if fail to evaluate.
s
the target stringpattern
the pattern just like ‘%abc’case_insensitive
whether to perform case-insensitive like or not.