我必须编写一个程序,将字符串的元音、辅音和其他符号分别更改为 C、V 0。我已经这样做了,但我想知道是否有更有效和更优雅的方法来做到这一点。将不胜感激输入。
(defun string-to-list (string)
(loop for char across string collect char))
(defun is-vowel (char) (find char "aeiou" :test #'char-equal))
(defun is-consonant (char) (find char "bcdfghjklmnpqrstvwxyz" :test #'char-equal))
(defun letter-type (char)
(if (is-vowel char) "V"
(if (is-consonant char) "C"
"0")))
(defun analyze-word (word-string)
(loop for char across word-string collect (letter-type char)))
此外,我想把它变成一个字符串,我该怎么做?我应该定义一个遍历列表并使其成为字符串的函数还是更简单的方法?