A SQL like
style pattern matching.
To do a patten matching, use Like
:
```Rust use like::Like;
// Has Escape
assert!(Like::
To do a case-insensitive pattern matching, use ILike
:
```Rust use like::ILike;
// Has Escape
assert!(ILike::
To convert the pattern to use standard backslash escape convention, use Escape
:
```Rust use like::Escape;
assert_eq!("Hello$%".escape("$").unwrap(), "Hello\%"); ```
This version of like
requires Rust 1.57 or later.
This project is licensed under the Apache-2.0 license (LICENSE or http://www.apache.org/licenses/LICENSE-2.0).
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in like
by you, shall be licensed as Apache-2.0, without any additional
terms or conditions.