Decodeforhtml()

Unescapes a string containing entity escapes to a string containing the actual Unicode characters corresponding to the escapes

Usage

STRING = Decodeforhtml( string )
Argument Summary
string the string to unescape

Calling

Supports named-parameter calling allowing you to use the function like:

Decodeforhtml(
   string=?
);

Supports passing parameters as a structure using ArgumentCollection:

Decodeforhtml( ArgumentCollection={
   string : ?
} );