是否有任何实现 org.apache.commons.lang.StringEscapeUtils.escapeHtml 的 python 模块或代码?
与http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html#escapeHtml(java.lang.String)中的完全相同
我四处搜索,但只能找到不做同样事情的 cgi.escape 函数。
在此先感谢,对不起英语:D
是否有任何实现 org.apache.commons.lang.StringEscapeUtils.escapeHtml 的 python 模块或代码?
与http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html#escapeHtml(java.lang.String)中的完全相同
我四处搜索,但只能找到不做同样事情的 cgi.escape 函数。
在此先感谢,对不起英语:D
这是针对 XML 而不是 HTML,但它可能符合您的需求:Escaping XML
>>> from xml.sax.saxutils import escape
>>>
>>> escape("< & >")
'< & >'