xml.sax.saxutils.unescape()

xml.sax.saxutils.unescape(data, entities={})

Unescape '&', '<', and '>' in a string of data.

You can unescape other strings of data by passing a dictionary as the optional entities parameter. The keys and values must all be strings; each key will be replaced with its corresponding value. '&amp', '<', and '>' are always unescaped, even if entities is provided.

doc_python
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.