我对XSLT一无所知,但我需要它一次性。这应该很简单。 XSLT需要采取以下输入和显示,如下所示:
INPUT:
<TestResult>
<set-value idref="account_lockout_duration_var">900</set-value>
<set-value idref="account_lockout_threshold_var">5</set-value>
<group>
<id>345</id>
<id>265</id>
<field>true</field>
<message>dont do that</message>
</group>
<group>
<id>333</id>
<field>false</field>
</group>
</TestResult>
输出
345,265,true
333,false
这只是一个片段,每个组只能有一个字段元素,但id元素是未绑定的。
我修改了输入,使用下面的答案,我得到额外的输出(一切都输出,当我只想要id和field元素。 感谢。
答案 0 :(得分:2)
我会做这样的事情:
<强> XML:强>
<TestResult>
<set-value idref="account_lockout_duration_var">900</set-value>
<set-value idref="account_lockout_threshold_var">5</set-value>
<group>
<id>345</id>
<id>265</id>
<field>true</field>
<message>dont do that</message>
</group>
<group>
<id>333</id>
<field>false</field>
</group>
</TestResult>
<强> XSL:强>
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="/TestResult/group">
<xsl:apply-templates/>
<xsl:if test="following-sibling::group">
<xsl:text>
</xsl:text>
</xsl:if>
</xsl:template>
<xsl:template match="/TestResult/group/id|field">
<xsl:value-of select="."/>
<xsl:if test="following-sibling::id or following-sibling::field">,</xsl:if>
</xsl:template>
</xsl:stylesheet>
<强> OUT:强>
345,265,true
333,false
答案 1 :(得分:1)
这将是这样的:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text" encoding="UTF-8" omit-xml-declaration="yes"/>
<xsl:template match="/">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="group">
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="id">
<xsl:apply-templates/>
<xsl:text>;</xsl:text>
</xsl:template>
<xsl:template match="field">
<xsl:apply-templates/>
<xsl:text>
</xsl:text>
</xsl:template>
</xsl:stylesheet>
答案 2 :(得分:1)
此样式表:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="text"/>
<xsl:template match="group/*[not(self::message)]">
<xsl:value-of select="concat(.,substring(',
',
1 + boolean(self::field),
1))"/>
</xsl:template>
<xsl:template match="text()"/>
</xsl:stylesheet>
输出:
345,265,true
333,false