我必须在XSL 1.0中编写一个小的通用转换,当书名涉及NC'时,将负价格转为正值。价格可以在多个/任何级别发生。我必须遇到负号,并将其转换为任何类型的XML。请建议。
XML -
<Books>
<Book>
<Name>NC</Name>
<Price>-100.50</Price>
</Book>
<Book>
<Name>B1</Name>
<Pr>450.60</Pr>
</Book>
<Book>
<Name>C1</Name>
<Price>35.20</Price>
</Book>
<Book>
<Name>D1</Name>
<P>5</P>
</Book>
</Books>
答案 0 :(得分:1)
如果您希望文本Price元素的数字小于零,则属于名为“NC”的Book元素。在这种情况下,您只需要以下模板匹配
<xsl:template match="Book[Name='NC']/Price[number(.) < 0]/text()">
然后你可以添加代码将负值转为正值。
尝试以下XSLT
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" />
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="Book[Name='NC']/Price[number(.) < 0]/text()">
<xsl:value-of select="format-number(0 - number(.), '0.00')" />
</xsl:template>
</xsl:stylesheet>
应用于XML时,输出以下内容
<Books>
<Book>
<Name>NC</Name>
<Price>100.50</Price>
</Book>
<Book>
<Name>B1</Name>
<Pr>450.60</Pr>
</Book>
<Book>
<Name>C1</Name>
<Price>35.20</Price>
</Book>
<Book>
<Name>D1</Name>
<P>5</P>
</Book>
</Books>
请注意使用identity transform复制现有元素。