newLISP Fan Club

Forum => newLISP in the real world => Topic started by: joejoe on July 11, 2018, 02:16:28 AM

Title: Sorting a list or string
Post by: joejoe on July 11, 2018, 02:16:28 AM
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!
Title: Re: Sorting a list or string
Post by: gekkonier on July 11, 2018, 03:02:24 AM
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 ;)
Title: Re: Sorting a list or string
Post by: rrq on July 12, 2018, 06:25:08 AM
You might have meant the third line be
(set 'worder (map lower-case words))
Title: Re: Sorting a list or string
Post by: gekkonier on July 13, 2018, 01:46:04 AM
It's kind of tedious. I hope everything is alright with joejoe...

;)



One can only guess if you don't get any feedback.
Title: Re: Sorting a list or string
Post by: joejoe on July 13, 2018, 08:14:34 PM
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!