String.unescapeHTML

Syntax

PP.String.unescapeHTML(text: String);

Parameters

text. Text to be unescaped.

Description

The unescapeHTML static method unescapes HTML markup characters in specified string.

Comments

This method returns a String-type value.

Use the PP.String.escapeHTML method to escape control characters.

NOTE. This method replaces the outdated method PP.unescapeHTML.

Example

The example of use is given in the with description of the String.escapeHTML method.

See also:

PP