Skip to content

Instantly share code, notes, and snippets.

@prdetective
Created October 9, 2013 19:29
Show Gist options
  • Save prdetective/6906863 to your computer and use it in GitHub Desktop.
Save prdetective/6906863 to your computer and use it in GitHub Desktop.
h = {}
"url=http://ya.ru&param=12345".split('&').each do |pair|
k,v = pair.split('=')
h[k] = v
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment