On Feb 17, 9:50 pm, Ralph Shnelvar <[email protected]> wrote:
> Is there a good way to programmatically convert
> {:a=>'b', :c=>'d'}
> to
> 'a=b c=d'
> ?
>
> Rails seems to do this knid of thing "all over the place".
I think you're looking for Hash#to_query:
h = { :a => 'b', :c => 'd' }
opts = h.to_query # => "a=b&c=d"
Jeff
purpleworkshops.com
--
You received this message because you are subscribed to the Google Groups "Ruby
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.