Operator Type:
Operator Scope of Action:
Operator Purpose:
Data Type Returned:
Operator First Added:
Operator in Current Baseline:
Operator Last Altered:
Function [other Function type actions]
Item [operators of similar scope]
Formatting [other Formatting operators]
String [about String data type]
v4.0.0
Baseline
As at baseline
escapeHTML(dataStr)
escapeHTML converts HTML and XML special characters in string dataStr to HTML/XML entities. For example, '<' is replaced by '<' and '&' is replaced by '&'.
For example, if the source dataStr is "this & that":
$MyString = escapeHTML("this & that")
outputs"this & that"
.
See also attributeEncode(), especially if working with XML strings.