iregexp

Crates.ioiregexp
lib.rsiregexp
version0.1.1
sourcesrc
created_at2024-05-13 14:31:02.153389
updated_at2024-05-14 06:38:51.261179
descriptionA checking implementation of I-Regexp
homepagehttps://github.com/jg-rp/rust-iregexp
repositoryhttps://github.com/jg-rp/rust-iregexp
max_upload_size
id1238502
size11,243
James (jg-rp)

documentation

README

Rust I-Regexp Checker

Check regular expressions for compliance with RFC 9485.

use iregexp::check;

fn main() {
    println!("{:?}", check(r"[0-9]*?"));  // false
}
Commit count: 23

cargo fmt