Skip to content

xmlUnescape

xmlUnescape(string) → string · XML

Unescape XML entity references back to their original characters. See Chapter 22.

  • string (required): the string to unescape
utlx
xmlUnescape("price &lt; 100 &amp; tax &gt; 0")  // "price < 100 & tax > 0"

Released under AGPL-3.0.