DecodeHtmlChars

Top  Previous  Next

Sub DecodeHtmlChars($s As String) As String

 

Decodes all encoded HTML characters, for example   or ú

 

Parameters

 

$s ... String expression. Source code of a web page.

 

Example:

Dim $s

 

$s = "There are spaces"

$s = DecodeHtmlChars($s)

' returns $s = "There are spaces"