B4X
B4X
Decode HTML Entity Encoded JSON
See more JSON Examples
Decodes an HTML entity encoded string to JSON.Chilkat B4X Downloads
Dim success As Boolean = False
Dim sb As ChilkatStringBuilder
sb.Initialize
success = sb.Append("{"xyz": "abc"}")
sb.EntityDecode
' This is a test comment;
Log(sb.GetAsString)
' Output is:
' {"xyz": "abc"}