Sample code for 30+ languages & platforms
Visual Basic 6.0

Decode HTML Entity Encoded JSON

See more JSON Examples

Decodes an HTML entity encoded string to JSON.

Chilkat Visual Basic 6.0 Downloads

Visual Basic 6.0
Dim success As Long
success = 0

Dim sb As New ChilkatStringBuilder

success = sb.Append("{"xyz": "abc"}")

success = sb.EntityDecode()

' This is a test comment;
Debug.Print sb.GetAsString()

' Output is:

' {"xyz": "abc"}