I have a string like this:
\"foo=bar&bar=foo&hello=hi\"
Does Ruby on Rails provide methods to parse this as if it is a querystring,
The
CGI::parse("foo=bar&bar=foo&hello=hi")
Gives you
{"foo"=>["bar"], "hello"=>["hi"], "bar"=>["foo"]}