awesome. second approach (tostring) worked. I tried to put your code and came up with this:
(def test-list (mystring item-list)
(each item item-list
(if (findsubseq mystring (tostring (pr item)))
(prn item))
)
)
arc> (test-list "google" '(yahoo yahoogoogle "google yahoo"))
yahoogoogle
google yahoo
i was trying to use car on list..but it dint worked.
Thanks