Back to FabImage Library website
You are here: Start » Function Reference » System » HTTP » Http_DecodeURL
Header: | FIL.h |
---|---|
Namespace: | fil |
Module: | FoundationLite |
Converts text from URL friendly text to a string.
Syntax
C++
C#
void fil::Http_DecodeURL ( const ftl::String& inEncoded, ftl::String& outDecoded )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inEncoded | const String& | Percent encoded string. | |
![]() |
outDecoded | String& | Decoded string. |
Description
Filter decodes an percent-encoded string to the raw text.
More details can be found in Percent-encoding standard.
Examples
String Node%20%3D%201%2B2%2B3 will be decoded to Node = 1+2+3.
See Also
- Http_EncodeURL – Converts string to URL friendly text.