我有一个
XML,每个具有相似数据的多个节点.我想从每个节点删除一个特定的属性(USER:IPADDRESS).我已经弄清楚如何使用ors链接一些元素,只是省略了User =“{@ User}”匹配,因此它不会显示在结果中:
XSL片段:
<xsl:template match="Creation | Test | Assignment | Modification | Repair | Termination"> <Creation CommitID="{@CommitID}" Date="{@Date}" BoardID="{@BoardID}"> <xsl:apply-templates/> </Creation> </xsl:template>
令人惊讶的是,“创建”之后的所有节点名称都被重新命名为创建,因为这正是我要告诉它的.如何通过各种比赛,以便在结果中按正确的顺序进行应用?我知道我可以使用相同的XSL语句为每个各种比赛(这是我第一次做到这一点),但是必须有一个更优雅的方法,这只是回避我.我有数百万数百万行XML的处理,这只是我将要做的许多转换中的第一个.
我在Win7框上使用msxsl V4.0来做我的转换,如果有任何后果.
XML:
<?xml version="1.0"?> <BoardDatabase> <Board_Data BoardID="1035"> <Creation CommitID="12b" Date="2007-12-07T15:43:51" BoardID="1035" User="CSAGAN:192.168.1.177"> <BoardDrawing>3B</BoardDrawing> <AssemblyDrawing>2010F</AssemblyDrawing> <Notes>PO Num 1959</Notes> </Creation> <Test CommitID="117" Date="2007-12-10T10:39:43" BoardID="1035" User="CSAGAN:192.168.1.183"> <ElectricalTestData Result="FAIL" Version="IMM STD REVF"> <AutomatedTest ReportVersion="1.0"> <TestSetup> <TestAppBuildDate>Dec 07 2007</TestAppBuildDate> <VersionPath>c:\tests\versions\v12.txt</VersionPath> <VersionNumber>1.2</VersionNumber> <OperatorName>CSAGAN</OperatorName> <StationID>PC-191-NDGrasse</StationID> <JigSN>12345</JigSN> <JigAssembly>42</JigAssembly> <TestStartTime>2007-12-10 10:34:17</TestStartTime> </TestSetup> </AutomatedTest> </ElectricalTestData> </Test> <Assignment CommitID="1c1f" User="JRandi:192.168.1.162" Date="2008-09-30T07:36:52" BoardID="1035"> <Notes>Boardset Failed etest twice,no problem log entry/repair attempts made.</Notes> </Assignment> <Modification CommitID="2bb7" User="JRandi:192.168.1.162" Date="2009-03-11T13:31:21" BoardID="1035"> <AssemblyDrawing>2001G</AssemblyDrawing> <Notes>Cornelius upgraded boardset to rev. G</Notes> </Modification> </Board_Data> </BoardDatabase>
XSL:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:template match="Creation | Test | Assignment | Modification | Repair | Termination"> <Creation CommitID="{@CommitID}" Date="{@Date}" BoardID="{@BoardID}"> <xsl:apply-templates/> </Creation> </xsl:template> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> </xsl:stylesheet>
最新XSL使用@ DevNull的解决方案,使原始文件的大小加倍:
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <!-- Answer from Stack Overflow that only strips out the IP Address from the User attribute. --> <xsl:template match="@User"> <xsl:attribute name="User"> <xsl:value-of select="substring-before(.,':')"/> </xsl:attribute> </xsl:template> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()"/> </xsl:copy> </xsl:template> </xsl:stylesheet>
来自@ Dimitre的解决方案的最新XSL需要很长时间才能处理(30分钟后仍然运行,但文件仍在增长):
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output omit-xml-declaration="yes" indent="yes"/> <xsl:strip-space elements="*"/> <xsl:template match="node()|@*"> <xsl:copy> <xsl:apply-templates select="node()|@*"/> </xsl:copy> </xsl:template> <xsl:template match= "*[contains('|Creation|Test|Assignment|Modification|Repair|Termination|',concat('|',name(),'|')) ]/@user"/> </xsl:stylesheet>
尝试将您的模板更改为:
原文链接:https://www.f2er.com/xml/292204.html<xsl:template match="Creation|Test|Assignment|Modification|Repair|Termination"> <xsl:copy> <xsl:apply-templates select="@*[not(name()='User')]|node()"/> </xsl:copy> </xsl:template>
你会注意到它看起来很像你的身份模板,添加到@ *的谓词.
此外,如果您想剥夺所有用户属性,无论元素是什么,您可以使用此模板:
<xsl:template match="@User"/>
这是另一种方式(只是从创造和测试简单地剥离)
<xsl:template match="@User[..[self::Creation or self::Test]]"/>
回答评论
改用此模板:
<xsl:template match="@User"> <xsl:attribute name="User"> <xsl:value-of select="substring-before(.,':')"/> </xsl:attribute> </xsl:template>