Skip to content

Instantly share code, notes, and snippets.

@kwilczynski
Created March 9, 2012 10:21
Show Gist options
  • Save kwilczynski/2005964 to your computer and use it in GitHub Desktop.
Save kwilczynski/2005964 to your computer and use it in GitHub Desktop.
irb(main):001:0> require 'cgi'
=> true
irb(main):002:0> array = %w(ab"c def' /ghi)
=> ["ab\"c", "def'", "/ghi"]
irb(main):003:0> array.each_with_index {|v,i| array[i] = CGI.escape(v) }
=> ["ab%22c", "def%27", "%2Fghi"]
irb(main):004:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment