In Python I would do the following:
>>> q = urllib.urlencode({\"q\": \"clojure url\"}) >>> q \'q=clojure+url\' >>> url = \"http://sta
A simple solution using str(ings):
(def q (str "clojure+url")) (def url (str "http://stackoverflow.com/search?" q))