Sample code for 30+ languages & platforms
Xojo Plugin

StringBuilder EntityDecode

Demonstrates the Chilkat StringBuilder EntityDecode method to decode HTML entities.

Chilkat Xojo Plugin Downloads

Xojo Plugin
// Decode the following HTML entities, replacing each with the character represented.
Dim s As String
s = "é é é Latin small letter e with acute"

Dim sb As New Chilkat.StringBuilder

Dim success As Boolean
success = sb.Append(s)
success = sb.EntityDecode()

// Output: é é é Latin small letter e with acute
System.DebugLog(sb.GetAsString())