Xojo Plugin
Xojo Plugin
Decode HTML Entity Encoded JSON
See more JSON Examples
Decodes an HTML entity encoded string to JSON.Chilkat Xojo Plugin Downloads
Dim success As Boolean
success = False
Dim sb As New Chilkat.StringBuilder
success = sb.Append("{"xyz": "abc"}")
success = sb.EntityDecode()
// This is a test comment;
System.DebugLog(sb.GetAsString())
// Output is:
// {"xyz": "abc"}