Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Group and Sequence combination in xslt 2.0

From: RolfK <Rolf.Kemper@--.-----.--->
To: NULL
Date: 10/9/2008 1:05:00 AM
Dear ALL,
I need some help on xsl:sequence. I'm using the Altova XSLT processor,
but I'm quite confident it is not an processor issue. It's probably my
bad knowledge of xslt 2.0.
I have probably put more that required in the test case, but it
basically covers my more complex code.

Here is the xml example source:
<?xml version="1.0" encoding="UTF-8"?>
<SeqTest>
	<Item>otto_L</Item>
	<Item>otto_L</Item>
	<Item>otto_R</Item>
	<Item>otto_L</Item>
	<Item>karl_L</Item>
	<Item>karl_R</Item>
	<Item>nepumuk_L</Item>
</SeqTest>
My xslt
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
	xmlns:xs="http://www.w3.org/2001/XMLSchema"  >
	<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/
>
	<xsl:template match="/">
		<DEBUG>
			<xsl:for-each select="SeqTest/Item">
				<ForeEach Pos="{position()}" Name="{.}"/>
			</xsl:for-each>
			<xsl:variable name="vSeq">
				<xsl:for-each-group select="SeqTest/Item"
					group-by="substring(.,1,string-length(.)-2)">
					<xsl:variable name="vBaseName" s
					elect="substring(.,1,string-length(.)-2)"/>
					<xsl:if test="$vBaseName != 'nepumuk'">
						<xsl:sequence select="$vBaseName"/>
					</xsl:if>
				</xsl:for-each-group>
			</xsl:variable>
			<Seq>
				<xsl:for-each select="$vSeq">
					<Item BaseName="{.}"/>
				</xsl:for-each>
			</Seq>
		</DEBUG>
	</xsl:template>
</xsl:stylesheet>
The UNEXPECTED result
<?xml version="1.0" encoding="UTF-8"?>
<DEBUG xmlns:xs="http://www.w3.org/2001/XMLSchema">
	<ForeEach Pos="1" Name="otto_L"/>
	<ForeEach Pos="2" Name="otto_L"/>
	<ForeEach Pos="3" Name="otto_R"/>
	<ForeEach Pos="4" Name="otto_L"/>
	<ForeEach Pos="5" Name="karl_L"/>
	<ForeEach Pos="6" Name="karl_R"/>
	<ForeEach Pos="7" Name="nepumuk_L"/>
	<Seq>
		<Item BaseName="ottokarl"/>
	</Seq>
</DEBUG>

As you can see the result element Item is only once there.
For me it meas that I have not build a sequnce of simple string values
over which I want to iterate.
(Please see attribute BaseName="otokarl" which indictes that too )

WHAT IS WRONG HERE ?

Any help is welcome

Rolf


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent