我是XSLT新手,希望能得到一些帮助。
我目前有一个XML,它包含以下格式的多个副本:
<item:items>
<item:item action="ingest" id="USAUS868509">
<item:itemID>1157245</item:itemID>
<item:spotType>commercial</item:spotType>
</item:item>
<item:items>
我的任务是替换id属性的值。我需要根据代码的数字部分改变这个值。如果值大于850000,格式应该改为USA868509。如果该值小于850000,则将id值更改为仅包括数字。XML中的其余值应保持完全相同。
我目前拥有以下xslt:
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="//items/item[@id]">
<xsl:choose>
<xsl:when test="substring(id,5) >= 845986">
<xsl:attribute name="id">
<xsl:value-of select="substring(id,5)"/>
</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="id">
<xsl:value-of select="id"/>
</xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
我很难确定要更改的值,因为XSLT不执行变量循环。有没有办法更改XSLT以获得这种逻辑?
让我们有以下格式良好的输入示例:
XML
<items>
<item action="ingest" id="USAUS849999">
<itemID>1157245</itemID>
<spotType>commercial</spotType>
</item>
<item action="ingest" id="USAUS850001">
<itemID>1157246</itemID>
<spotType>commercial</spotType>
</item>
</items>
应用以下样式表:
XSLT1.0
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:strip-space elements="*"/>
<!-- identity transform -->
<xsl:template match="@*|node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="@id">
<xsl:variable name="code" select="substring(., 6)" />
<xsl:attribute name="id">
<xsl:if test="$code >= 850000">USA</xsl:if>
<xsl:value-of select="$code" />
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>
将产生以下结果:
<?xml version="1.0" encoding="UTF-8"?>
<items>
<item action="ingest" id="849999">
<itemID>1157245</itemID>
<spotType>commercial</spotType>
</item>
<item action="ingest" id="USA850001">
<itemID>1157246</itemID>
<spotType>commercial</spotType>
</item>
</items>
我对xslt有这个问题。样式表中有一个名为misctable的表,它被放在一个变量miscTables中。例如在节点 id="_384PLATE"具有值A1、A2、B1。当我标记并将其与xml进行比较时,我需要保存R[@i=2]/C/@i属性的值。在这种情况下,我需要得到值2,3,26 xml xslt 非常感谢。
我的目标是在StatusDate为1900-01-01T00:00:00时使用此XSLT样式表删除整个LoanSecondaryStatus节点,但在其他日期时保留该节点。 我有以下XML: 这是我用来尝试删除Loan二级状态节点的XSLT:
我很难使用下面的用例。 以下是XML: 我想要实现的是基于节点
我必须查询一个属性值,然后在此基础上从不同的节点找到另一个属性值。 以下是我的XML的外观: 示例:我需要查询的属性值位于第101行。我必须取引用节点的节点id,在这个例子中是“3”: 然后我需要在XML中进一步搜索,它应该找到id="3"的节点,然后寻找名为"长度"的属性,并返回它的值,在这个例子中是"10": 我已经编写了以下XSLT代码,但需要添加更多代码以正确获取长度部分: 请建议如何获得
如何使类示例推断类型基于实例值检查: 打字沙盒。