Skip to content

unescapeXML

unescapeXML(string) → string · XML

Unescape XML entities (<, >, &, ", ') back to their characters. See Chapter 22.

  • string (required): string with XML entities
utlx
unescapeXML("price < 100 & qty > 0")
// "price < 100 & qty > 0"

Released under AGPL-3.0.