问题:我们有各种格式的字符实体(Ex:&
和&
),我们需要将它们转换为标准的XML字符实体(& < > ' "
然后通过几个单独的转换将它们保存为实体。
给出XML:
<rootelm>
<testdata>&apos; &gt; &lt; &quot;</testdata>
</rootelm>
和(基于xsl:character-map to replace special characters)的样式表:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<!-- COPY EVERYTHING -->
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="@* | node()">
<xsl:sort select="local-name()"/>
</xsl:apply-templates>
</xsl:copy>
</xsl:template>
<xsl:variable name="quote">
<xsl:text>&quot;</xsl:text>
</xsl:variable>
<xsl:variable name="quote2">
<xsl:value-of select="string('"')"/>
</xsl:variable>
<xsl:template match="text()[contains(.,'&lt;') or contains(.,'&gt;') or contains(.,'&quot;') or contains(.,'&apos;')]">
<xsl:value-of select='replace(
replace(
replace(
replace(., "&lt;", "<"),
"&gt;",
">"
),
"&apos;",
"'"
),
$quote,
$quote2
)
' />
</xsl:template>
</xsl:stylesheet>
如何将撇号和引号保留为实体(源系统期望/需要它)?
当前输出:
<rootelm>
<testdata>' > < "</testdata>
</rootelm>
答案 0 :(得分:3)
[定义:角色地图允许一个 特定字符出现在文本中 或最终结果中的属性节点 树被指定的替换 期间的字符串 序列化。]
<xsl:character-map name="quotes">
<xsl:output-character character='"' string="&quot;"/>
<xsl:output-character character="'" string="&apos;"/>
</xsl:character-map>