stringmetrics 2.2.2

Rust library for approximate string matching
Documentation
1
2
3
4
5
6
7
8
//! # Tools for splitting strings into words
//!
//! Tokenizers just provide handy methods to split a string into words,
//! following certain rules.

mod main;

pub use self::main::split_whitespace_remove_punc;