pub fn sql_like(pattern: &str, text: &str, escape: Option<char>) -> boolExpand description
Match a string against a SQL LIKE pattern with SQLite semantics.
%matches zero or more characters._matches exactly one character.- Case-insensitive for ASCII A-Z only (no Unicode case folding without ICU).
escapeoptionally specifies the escape character for literal%/_.