pub fn split_into_clean_words(input: &str) -> impl Iterator<Item = &str>
Expand description

Cleans a string and returns a list containing the cleaned up words.

Of note here is that the implementation splits on any character that is not a letter, even if it is in the middle of a “word”. This should not be a problem.