Xml 未解析字符串

Xml not parsing string

我有以下字符串

"The quic\b\b\b\b\b\bk brown fo\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007\u0007x... [Beeeep]"

但是 xmlBuilderxml2js 由于这些字符 \b\u0007 无法解析此字符串。如何允许这些字符我也允许 { allowSurrogateChars: true }) for xmlBuilder

\b[=11=]07 不是代理字符。 XML 1.0 中不允许使用它们(参见 XML Specification). It might be possible to include them in XML 1.1 (See "RestrictedChar" in the specification 中的 "Character Range"),但我不确定 XML Builder 如何支持它。