我想要它提取列表中的所有第一个单词。 例如:
(首先'hello world asd fdas qwerty)
返回:
h w a f q。
答案 0 :(得分:1)
试试这个:
(define (first-char lst)
(map (lambda (w)
(string->symbol
(string
(string-ref
(symbol->string w) 0))))
lst))
例如:
(first-char '(hello world asd fdas qwerty))
=> '(h w a f q)