UrlEncoded.decodeString

Decode string with % encoding. This method makes the assumption that the majority of calls will need no decoding.

@param encoded the encoded string to decode @param offset the offset in the encoded string to decode from @param length the length of characters in the encoded string to decode @param charset the charset to use for decoding @return the decoded string

  1. string decodeString(string encoded)
  2. string decodeString(string encoded, int offset, int length, string charset)
    class UrlEncoded
    static
    string
    decodeString
    (
    string encoded
    ,
    int offset
    ,
    int length
    ,
    string charset = ENCODING
    )

Meta