AutoIt
AutoIt
StringBuilder EntityDecode
Demonstrates the Chilkat StringBuilder EntityDecode method to decode HTML entities.Chilkat AutoIt Downloads
; Decode the following HTML entities, replacing each with the character represented.
Local $s = "é é é Latin small letter e with acute"
$oSb = ObjCreate("Chilkat.StringBuilder")
$oSb.Append($s)
$oSb.EntityDecode()
; Output: é é é Latin small letter e with acute
ConsoleWrite($oSb.GetAsString() & @CRLF)