Code Monkey home page Code Monkey logo

hashtag-rs's Introduction

Hashtag

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 ๐Ÿ˜ƒ

Sample usage

extern crate hashtag;

use hashtag::Hashtag;

pub fn main() {
    let tags: Vec<Hashtag> = Hashtag::parse("#rust is #awesome");
    println!("{:?}", tags);
    // => [
    //     Hashtag { text: "rust", start: 0, end: 4 },
    //     Hashtag { text: "awesome", start: 9, end: 16 }
    // ]
}

Benchmarking

I have written a fairly simple benchmarking.

Run it with:

cargo build --release && ./target/release/benchmark

Development

./bin has some scripts that you might find helpful.

  • bin/watch uses cargo watch to run tests and other things when you save a file.
  • bin/publish used to publish the current version to <crates.io>.

Author

David Pedersen, Backend Developer @ Tonsser

Contribution

Contributions are more than welcome!

License

hashtag is available under the MIT license. See the LICENSE file for more info.

hashtag-rs's People

Contributors

davidpdrsn avatar

Watchers

Kornel avatar James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.