nipah_tokenizer
A powerful yet simple text tokenizer for your everyday needs!
How To Use
- Obtain the default options (or create yourself your configuration):
let options = default;
- Get some text
let text = "Hello, World!".to_string;
- Tokenize your text!
use tokenize;
let tokens = tokenize;
Output will be like:
["Hello": Id] [Comma] ["World": Id] [Exclamation]
You can use it as your hearth desires, and it is pretty versatile
Happy coding!