hat-splitter
The hat-splitter crate implements the HAT splitting rule.
This crate is a work in progress. More information and documentation will follow.
Installation
Usage
use ;
The hat-splitter crate implements the HAT splitting rule.
This crate is a work in progress. More information and documentation will follow.
cargo add hat-splitter
use hat_splitter::{HATSplitter, Splitter};
fn main() {
let my_hat_splitter = HATSplitter::new();
let split_text: Vec<String> = my_hat_splitter.split("This is a test sentence.");
}