maraigue (owner)

Revisions

gist: 53835 Download_button fork
public
Description:
Ruby1.9勉強中:URLエンコード
Public Clone URL: git://gist.github.com/53835.git
URLencode-Ruby1.9.rb
1
2
3
4
5
6
7
8
9
#!/usr/bin/env ruby1.9
# -*- coding: utf-8 -*-
 
def URLencode(str)
  str.force_encoding("binary").gsub(/\W+/){ |x| x.unpack("C*").map{ |y| sprintf("%%%02X", y) }.join }
end
 
puts URLencode("ほげ")