Icon UnEscapeJSON

Unit: WebCore

Available In: Client and Server Applications

function UnEscapeJSON(const Value: String): String

The UnEscapeJSON function returns the un-escaped version of the escaped JSON input parameter. The return value is a String value.

This function is the analog of the EscapeJSON function.

Examples

X := UnEscapeJSON('\"Hello World\"');  // X is '"Hello World"'
Image