- :string
- or :nothing
unescape
unescape given string
Parameters
unescape string :string :literal :pathliteral
Attributes
| json | from a JSON-escaped string | |
| xml | from an XML document | |
| html | from an HTML document |
Returns
Examples
copyprint unescape "a\\nb\\tc" ; a ; b c
copyprint unescape.json {a \"b\" c} ; a "b" c
copyprint unescape.html "a & b < c A" ; a & b < c A