Sample code for 30+ languages & platforms
Visual Basic 6.0

StringBuilder EntityDecode

Demonstrates the Chilkat StringBuilder EntityDecode method to decode HTML entities.

Chilkat Visual Basic 6.0 Downloads

Visual Basic 6.0
' 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 ChilkatStringBuilder

success = sb.Append(s)
success = sb.EntityDecode()

' Output: é é é Latin small letter e with acute
Debug.Print sb.GetAsString()