Hi and thanks!
(set 'word (join titles " "))
(set 'words (find-all {w{5,}} word))
(set 'worder (lower-case (string words)))
(println (sort worder))
ERR: list or array expected in function sort : worder
worder looks similar to this: ("one" "two" "three")
How would I best sort this?
Thanks very much for help!
Hello!
Please provide a valid content for the symbol titles, and what output you expect from that given data.
Your code does not work at all ;)
You might have meant the third line be
(set 'worder (map lower-case words))
It's kind of tedious. I hope everything is alright with joejoe...
;)
One can only guess if you don't get any feedback.
Quote from: "ralph.ronnquist"
You might have meant the third line be
(set 'worder (map lower-case words))
Ralph, you always bat cleanup around here. Thank you!
It's hard to admit you know what I want to do before I even thought to do it! ;0)
Thanks for this very much and learned going forward. Big thanks for this and all many past!