Message 1 of 12
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
and i have another issue
have the list (setq selected^ '(0 5 9 12 18))
and have list of strings (setq layouts^ '("sheet a0" "sheet a1" "sheet a2"))
i looking for the most efficient way to turn it => "sheet a0,sheet a1, sheet a2"
what i tried is this:
(defun concat (item)
(strcat (nth item layouts^) ",")
)
(apply 'concat selected^)
and i'm getting this error
error: too many arguments
why this will work => (apply '+ selected^) returns 44
but my defined concat does not? what's the different?
again looking for the most efficient way to do it.
thanks
Moshe
Solved! Go to Solution.