Crates.io | hashtag |
lib.rs | hashtag |
version | 1.0.1 |
source | src |
created_at | 2017-11-22 11:55:31.888468 |
updated_at | 2021-02-14 14:14:17.529632 |
description | A hashtag parser |
homepage | |
repository | https://github.com/davidpdrsn/hashtag-rs |
max_upload_size | |
id | 40225 |
size | 29,507 |
A parser for finding hashtags in strings. For example parsing Rust is #awesome
gives you awesome
and its location within the string.
The goal of this crate is to match Instagram's parsing of hashtags. So if you find strings that aren't parsed correctly please open an issue 😃
use hashtag::{Hashtag, HashtagParser};
use std::borrow::Cow;
let mut parser = HashtagParser::new("#rust is #awesome");
assert_eq!(
parser.next().unwrap(),
Hashtag {
text: Cow::from("rust"),
start: 0,
end: 4,
}
);
assert_eq!(
parser.next().unwrap(),
Hashtag {
text: Cow::from("awesome"),
start: 9,
end: 16,
}
);
assert_eq!(parser.next(), None);
I have written a fairly simple benchmarking.
Run it with:
cargo build --release && ./target/release/benchmark
Contributions are more than welcome!
hashtag
is available under the MIT license. See the LICENSE file for more info.