Flowdock
method

unescape

Importance_0
v1_9_1_378 - Show latest stable - 0 notes - Class: Parser
unescape(str, escaped = @regexp[:ESCAPED]) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/uri/common.rb, line 229
    def unescape(str, escaped = @regexp[:ESCAPED])
      str.gsub(escaped) { [$&[1, 2].hex].pack('C') }.force_encoding(str.encoding)
    end
Register or log in to add new notes.