AutoIt
AutoIt
Decode HTML Entity Encoded JSON
See more JSON Examples
Decodes an HTML entity encoded string to JSON.Chilkat AutoIt Downloads
Local $bSuccess = False
$oSb = ObjCreate("Chilkat.StringBuilder")
$bSuccess = $oSb.Append("{"xyz": "abc"}")
$oSb.EntityDecode()
; This is a test comment;
ConsoleWrite($oSb.GetAsString() & @CRLF)
; Output is:
; {"xyz": "abc"}