I'm looking for how to loop through a string in LISP to check for alpha char or spaces. A sentence like "Coffee is Friend" is something that i want to check as Valid. But when i do (every #'alpha-char-p "coffee is best"') it fails on the spaces because the space is not technically alpha-char. Suggestions?
Thanks!