Python:
def words(text): return re.findall('[a-z]+', text.lower())
(def words (text) (tokens (downcase text) [~<= #\a _ #\z]))