| Crates.io | iregexp |
| lib.rs | iregexp |
| version | 0.1.1 |
| created_at | 2024-05-13 14:31:02.153389+00 |
| updated_at | 2024-05-14 06:38:51.261179+00 |
| description | A checking implementation of I-Regexp |
| homepage | https://github.com/jg-rp/rust-iregexp |
| repository | https://github.com/jg-rp/rust-iregexp |
| max_upload_size | |
| id | 1238502 |
| size | 11,243 |
Check regular expressions for compliance with RFC 9485.
use iregexp::check;
fn main() {
println!("{:?}", check(r"[0-9]*?")); // false
}