![]() |
![]()
| ![]() |
![]()
NAMEhttp_uri - Old URI utility module, use uri_string instead DESCRIPTIONThis module is deprecated since OTP 23. Use the module uri_string to properly handle URIs, this is the recommended module since OTP 21. DATA TYPESType definitions that are related to URI:
For more information about URI, see RFC 3986. EXPORTSdecode(EncodedPart) -> DecodePart
Types: EncodedPart = uri_part() - A possibly percent encoded URI
part
DecodePart = uri_part() Warning:
Do not use will be removed use uri_string:unquote/1 instead
Decodes a possibly percent encoded URI part encode(DecodedPart) -> EncodedPart
Types: DecodePart = uri_part()
EncodedPart = uri_part() - Percent encoded URI part Warning:
Do not use will be removed use uri_string:quote/1 instead
Performes prrcent encoding.
|