9 unstable releases (3 breaking)

0.4.4 Oct 7, 2019
0.4.3 Oct 7, 2019
0.4.2 Aug 26, 2019
0.4.1 Jul 30, 2019
0.1.0 Mar 16, 2019

#2441 in Parser implementations

Download history 19/week @ 2024-01-09 36/week @ 2024-01-16 3/week @ 2024-01-23 9/week @ 2024-01-30 94/week @ 2024-02-06 1/week @ 2024-02-13 11/week @ 2024-02-20 28/week @ 2024-02-27 4/week @ 2024-03-05 15/week @ 2024-03-12 29/week @ 2024-03-19 115/week @ 2024-03-26 64/week @ 2024-04-02 13/week @ 2024-04-09 26/week @ 2024-04-16 177/week @ 2024-04-23

286 downloads per month

MIT/Apache

21KB
399 lines

Reverse Find URL

Build Status

This crate provides a parser to search a string for URLs in reverse order.

All functionality is handled by the Parser struct which takes chars as input.

Examples

Text can be fed into the parser in reverse order:

use rfind_url::{Parser, ParserState};

let mut parser = Parser::new();

for c in "There_is_no_URL_here".chars().rev() {
    assert_eq!(parser.advance(c), ParserState::MaybeUrl);
}

The parser returns the length of the URL as soon as the last character of the URL is pushed into it. Otherwise it will return None:

use rfind_url::{Parser, ParserState};

let mut parser = Parser::new();

// Parser guarantees there's currently no active URL
assert_eq!(parser.advance(' '), ParserState::NoUrl);

// URLs are only returned once they are complete
for c in "ttps://example.org".chars().rev() {
    assert_eq!(parser.advance(c), ParserState::MaybeUrl);
}

// Parser has detected a URL spanning the last 19 characters
assert_eq!(parser.advance('h'), ParserState::Url(19));

No runtime deps

Features