You are here: Start » FIL.NET » Function Reference » System » HTTP » FIL.Http_EncodeURL
Converts string to URL friendly text.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inDecoded | string | String to be encoded. | ||
![]() | outEncoded | string | Percent-encoded string. |
Description
Filter converts a raw text to the format which can be used in a GET or POST request. Most of white spaces are converted to percent encoded characters.
More details can be found in Percent-encoding standard.
Examples
String Node = 1+2+3 will be encoded to Node%20%3D%201%2B2%2B3.