Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello!
So - I have a list made by appending a wild card conditions from another:
(foreach x ListA
(if (wcmatch x "111*")
(setq ListB (append (ListA (list x)))
))
However, I would like my ListB to be written to a txt file! I have experimented with:
(mapcar (function (lambda ...
to place (princ)'s in order to create space shifts in a txt document.
... But it does not seem to work properly ...
Is there a way to take ListB's content and write it to a txt-file?
Solved! Go to Solution.