Function split_sentences
Source pub fn split_sentences(s: &str) -> Vec<&str>
Expand description
Splits text into sentences (approximate).
Uses simple heuristics: splits on ., !, ? followed by whitespace.
§Arguments
§Returns
Vector of sentence strings.