Visual Basic 6.0
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
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"}