4 stable releases

1.1.1 Apr 9, 2024
1.1.0 Oct 21, 2022
1.0.1 Oct 1, 2022
1.0.0 Jul 2, 2022

#2621 in Command line utilities

Download history 1/week @ 2024-02-14 13/week @ 2024-02-21 25/week @ 2024-02-28 2/week @ 2024-03-06 2/week @ 2024-03-13 13/week @ 2024-03-27 112/week @ 2024-04-03 55/week @ 2024-04-10

180 downloads per month
Used in 3 crates (via yash-semantics)

MIT/Apache

99KB
2.5K SLoC

Yash-fnmatch

yash-fnmatch is a Rust library crate for performing glob-style pattern matching. This crate is part of yash, but can be used independently.

This crate recognizes all the features of the pattern matching notation as defined in POSIX. However, this crate does not (yet) support any locale-dependent behaviors.

yash-fnmatch at crates.io yash-fnmatch at docs.rs Build status

Usage

Add yash-fnmatch as a dependency in your Cargo.toml.

use yash_fnmatch::{Pattern, without_escape};
let p = Pattern::parse(without_escape("r*g")).unwrap();
assert_eq!(p.find("string"), Some(2..6));

License

MIT or Apache 2.0, at your option

Similar crates

yash-fnmatch is very similar to the fnmatch-regex crate in that both perform matching by converting the pattern to a regular expression. yash-fnmatch tries to support the POSIX specification as much as possible rather than introducing unique (non-portable) functionalities.

Dependencies

~2.4–4MB
~70K SLoC