Re: [racket-users] Re: How to 'apply' a function with optional parameters?

2016-10-29 Thread Meino . Cramer
Hi Ken, thanks for your reply ! :) The problem is much "simpler"... :) You wrote the whole logic to dig into the strings in the sublists in the big list. That's already done and working I am in search for doing this (string-join '( "a" "b" "c") " " ) ;; ( "a" "b" "c") is the sublist but in

[racket-users] Re: How to 'apply' a function with optional parameters?

2016-10-29 Thread Ken MacKenzie
Not 100% sure of what you're asking so if I got this wrong pseudo code it for me. Remember I am kind of new to racket but I will give it a go: As I understand it you have a list of lists of strings perhaps like this... (('this' 'is' 'one')('this' 'is' 'another')('this' 'is' 'the' 'last'))