我在节点中有一些文本,例如:
<xml><Hello world "&" foo bar></xml>
我想string(/xml)
对其进行处理和 JSON 转义,以便结果类似于:
"<Hello world \"&\" foo bar>"
我怎样才能用 XPath 3.1 做到这一点?
我在节点中有一些文本,例如:
<xml><Hello world "&" foo bar></xml>
我想string(/xml)
对其进行处理和 JSON 转义,以便结果类似于:
"<Hello world \"&\" foo bar>"
我怎样才能用 XPath 3.1 做到这一点?
您可以使用
serialize(string(xml), map{'method': 'json'})