Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/core_extend/String.rb
Instance Method Summary collapse
Instance Method Details
#urlencode ⇒ Object
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 |