Possible Duplicate:
What's the simplest way to parse URL parameters in Clojure?
I’d like to take a string like:
“q=foo+bar&x=14&y=hello”
and turn it into a map like:
{:q “foo+bar”, 😡 14, :y “hello”}
I’m sure there is an elegant idiomatic solution for such a problem.
1 Answer