Up: Emacs Lisp [Top][Contents]
mapconcat
An Elisp function that maps n elements 19 to m strings concatenated into 1 string:
(mapconcat (lambda (x) (when (< x 30) (format "%s!" x))) '(10 20 30))
"10!20!"
Accepts lists, vectors, and strings.