VB.NET
VB.NET
StringBuilder EntityDecode
Demonstrates the Chilkat StringBuilder EntityDecode method to decode HTML entities.Chilkat VB.NET Downloads
' Decode the following HTML entities, replacing each with the character represented.
Dim s As String = "é é é Latin small letter e with acute"
Dim sb As New Chilkat.StringBuilder
sb.Append(s)
sb.EntityDecode()
' Output: é é é Latin small letter e with acute
Debug.WriteLine(sb.GetAsString())