如何在XSLT中用字符串'\“'替换双引号?

时间:2011-09-26 11:46:56

标签: xml xslt

我有一个XML,其中双引号应替换为字符串\“。

例如:<root><statement1><![CDATA[<u>teset "message"here</u>]]></statement1></root>

所以输出应为<root><statement1><![CDATA[<u>teset \"message\"here</u>]]></statement1></root>

有人可以解释如何实现这个目标吗?

2 个答案:

答案 0 :(得分:4)

<强>予。 XSLT 1.0解决方案:

此转化

<xsl:stylesheet version="1.0"
 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output omit-xml-declaration="yes" indent="yes"
 cdata-section-elements="statement1"/>
 <xsl:strip-space elements="*"/>

 <xsl:param name="pPattern">"</xsl:param>
 <xsl:param name="pReplacement">\"</xsl:param>

 <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
 </xsl:template>

 <xsl:template match="statement1/text()" name="replace">
  <xsl:param name="pText" select="."/>
  <xsl:param name="pPat" select="$pPattern"/>
  <xsl:param name="pRep" select="$pReplacement"/>

 <xsl:choose>
  <xsl:when test="not(contains($pText, $pPat))">
   <xsl:copy-of select="$pText"/>
  </xsl:when>
  <xsl:otherwise>
   <xsl:copy-of select="substring-before($pText, $pPat)"/>
   <xsl:copy-of select="$pRep"/>
   <xsl:call-template name="replace">
    <xsl:with-param name="pText" select=
         "substring-after($pText, $pPat)"/>
    <xsl:with-param name="pPat" select="$pPat"/>
    <xsl:with-param name="pRep" select="$pRep"/>
   </xsl:call-template>
  </xsl:otherwise>
 </xsl:choose>
 </xsl:template>
</xsl:stylesheet>

应用于提供的XML文档

<root>
    <statement1><![CDATA[<u>teset "message"here</u>]]></statement1>
</root>

生成想要的正确结果

<root>
   <statement1><![CDATA[<u>teset \"message\"here</u>]]></statement1>
</root>

<强> II。 XSLT 2.0解决方案:

<xsl:stylesheet version="2.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:xs="http://www.w3.org/2001/XMLSchema">
 <xsl:output omit-xml-declaration="yes" indent="yes"
 cdata-section-elements="statement1"/>

 <xsl:param name="pPat">"</xsl:param>
 <xsl:param name="pRep">\\"</xsl:param>

 <xsl:template match="node()|@*">
     <xsl:copy>
       <xsl:apply-templates select="node()|@*"/>
     </xsl:copy>
 </xsl:template>

  <xsl:template match="statement1/text()">
   <xsl:sequence select="replace(.,$pPat, $pRep)"/>
  </xsl:template>
</xsl:stylesheet>

应用于同一XML文档(如上所述)时,会生成相同的正确结果

<root>
      <statement1><![CDATA[<u>teset \"message\"here</u>]]></statement1>
</root>

答案 1 :(得分:0)

<?xml version='1.0'   ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:fo="http://www.w3.org/1999/XSL/Format"
                version='1.0'>
<xsl:output method="xml"/>

<xsl:template match="/">
  <xsl:for-each select="//p">
    <xsl:value-of select="translate(text(), '&amp;x22;','#')"/>
  </xsl:for-each>
</xsl:template>

</xsl:stylesheet>

它对我有用....