URL_DECODE
Function
Decodes a URL-encoded string.
Parameters
str: string type, the URL-encoded string
Returns
- string type: Returns the decoded string.
- Converts
%XXencoded sequences to the corresponding characters. - Converts
+to space.
Examples
Notes
- This is the inverse of the
URL_ENCODEfunction. +is decoded to a space.- Supports standard URL percent-encoding decoding.
