<h1 align="center"><code>simplematch</code></h1>
<div align="center">
<a href="https://docs.rs/crate/simplematch/">Released API Docs</a>
|
<a href="https://github.com/gamma0987/simplematch/blob/main/CHANGELOG.md">Changelog</a>
</div>
<br>
<div align="center">
<a href="https://github.com/gamma0987/simplematch/actions/workflows/cicd.yml">
<img
src="https://github.com/gamma0987/simplematch/actions/workflows/cicd.yml/badge.svg"
alt="GitHub branch checks state"/>
</a>
<a href="https://codecov.io/gh/gamma0987/simplematch" >
<img
src="https://codecov.io/gh/gamma0987/simplematch/graph/badge.svg?token=GHG1BMO029"
alt="Coverage"/>
</a>
<a href="https://crates.io/crates/simplematch">
<img src="https://img.shields.io/crates/v/simplematch.svg" alt="Crates.io"/>
</a>
<a href="https://docs.rs/simplematch/">
<img src="https://docs.rs/simplematch/badge.svg" alt="docs.rs"/>
</a>
</div>
<hr>
# simplematch
`simplematch` is a Rust library that provides fast extended wildcard pattern
matching for strings and bytes with a simple and intuitive API.
## Features
Supports the basic wildcards `*` (matches any sequence of characters), `?`
(matches a single character). Optionally enable escaping `\` of special
characters or enable character classes `[...]`. Character classes can be negated
`[!...]` and contain ranges `[a-zA-Z]`.
* Optimized for **performance**
* **Simple** API consisting of two functions `dowild` and `dowild_with` with
custom pattern matching `Options`
* **Customizable** wildcard characters and matching options like
`case-insensitive`
* `#![no_std]` compatible (when the `std` feature is disabled)
* Fully **documented** on [docs.rs](https://docs.rs/simplematch)
## Examples
The basic function `dowild`:
```rust
use simplematch::dowild;
assert_eq!(dowild("foo*".as_bytes(), "foobar".as_bytes()), true);
assert_eq!(dowild("foo?".as_bytes(), "fooa".as_bytes()), true)
```
or more conveniently, bring the `DoWild` trait in scope to match directly
on strings (and bytes) without performance loss:
```rust
use simplematch::DoWild;
assert_eq!("foo*".dowild("foobar"), true);
```
Use `dowild_with` with `Options` to customize the pattern matching:
```rust
use simplematch::{dowild_with, Options, DoWild};
let options = Options::default()
.case_insensitive(true)
.wildcard_any_with(b'%');
assert_eq!(
"foo%".dowild_with("FOObar", options),
true
);
```
## Installation
Add `simplematch` to your `Cargo.toml`:
```toml
[dependencies]
simplematch = "0.3.1"
```
Or use [`cargo add`](https://github.com/killercup/cargo-edit):
```bash
cargo add simplematch@0.3.1
```
## Benchmarks
The benchmarks below show the average instruction counts of each function for a
given pattern and haystack. The haystacks and patterns are random valid utf-8
strings each with variable length.
| simplematch::dowild | `1694` | `4937` | `7331` | `82397` | `401193` | `706097` |
| simplematch::dowild_with | `2215` | `6493` | `9606` | `107840` | `518858` | `921040` |
| regex::bytes::Regex::is_match<br>(precompiled) | `199782` | `255366` | `268337` | `405869` | `742161` | `1061864` |
| wildcard::Wildcard::is_match | `2937` | `6347` | `13313` | `134660` | `530098` | `1053973` |
| wildmatch::Wildmatch::matches | `4929` | `13021` | `22972` | `232901` | `1105726` | `2122128` |
To be able to run these benchmarks, you need
[`iai-callgrind`](https://crates.io/crates/iai-callgrind) installed. Then run
the benchmarks from above with `cargo bench -p benchmarks --bench random`.
## License
`simplematch` is dual licensed under the Apache 2.0 license and the MIT license
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted
for inclusion in the work by you shall be dual licensed as in
[License](#license), without any additional terms or conditions.