#regex #regular #expression #hunt #string-search

no-std cur

The tool that will hunt for your regular expression

5 releases (breaking)

0.5.0 Dec 7, 2021
0.4.0 Oct 2, 2020
0.3.0 Sep 30, 2020
0.2.0 Aug 19, 2020
0.1.0 Sep 12, 2019

#1167 in Text processing

40 downloads per month
Used in 2 crates (via docuglot)

MIT license

33KB
695 lines

cur

cur - Your hunting companion for regular expressions.

License: MIT


lib.rs:

cur - Your unicode pattern hunting companion.

This module provides a [Cur], which can determine if a pattern known as an Odor matches a unicode string known as the "search". Odors can "mark" any number of parts of their pattern with Names. For each match that a [Cur] finds, it can return a Catch that has location information known as a Find for each of the marks of the Odor.

Examples

use cur::*;

// Define an Odor.
odor!(HELLO_WORLD = ["Hello ", .. as name, '!']);

// Create a Cur that will hunt for the Odor.
let mut cur = Cur::new(&HELLO_WORLD);

// Set the search to be hunted.
cur.set_search("Hello Bob!");

// Execute the hunt by requesting information from the Cur.
assert!(!cur.is_clear());

// The Cur iterates on the Catch found.
if let Some(catch) = cur.next() {
    assert_eq!(catch.get("name").map(Find::as_str), Some("Bob"));
} else {
    panic!("Cur did not find catch");
}

Dependencies

~1.5MB
~36K SLoC