DECODE_HTML
The DECODE_HTML function is used to decode HTML encoded strings for a given JSONPath.
Usable: Value Fields, Context Filter
Syntax: { DECODE_HTML((PARAM_1)) }
Parameter | Type | Examples | Description |
---|---|---|---|
PARAM_1 | JSONPath |
| The JSONPath expression representing the value that should be decoded |
Value Field Example
For example, consider the following data source JSON:
{
"value": "100 €"
}
Use the DECODE_HTML
function to decode all HTML encoded elements
{ DECODE_HTML(($.value)) }
This will result in 100 €