Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/core_extend/String.rb

Instance Method Summary collapse

Instance Method Details

#urlencodeObject



3
4
5
6
7
# File 'lib/core_extend/String.rb', line 3

def urlencode
  self.dup.force_encoding('ASCII-8BIT').gsub(/[^a-zA-Z0-9_\-.\*]/) do
    sprintf('%%%02X', $&.unpack('C')[0])
  end
end