xsl-list
[Top] [All Lists]

Re: [xsl] build group of elements

2012-06-24 11:55:13
Ken, unfortunatelly the elments in the output has different prefixes such as:

<_1st_
<_2nd_
<_3rd_
The names must contain the above prefixes
Your script builds only :
<_1_elment
<_1_elment
<_2_elment
<_3_elment

brg
hh

 

--- G. Ken Holman <gkholman(_at_)CraneSoftwrights(_dot_)com> schrieb am So, 
24.6.2012:

Von: G. Ken Holman <gkholman(_at_)CraneSoftwrights(_dot_)com>
Betreff: Re: [xsl] build group of elements
An: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com, 
xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Datum: Sonntag, 24. Juni, 2012 17:11 Uhr
At 2012-06-24 15:41 +0100, henry
human wrote:
sorry for my mistake..again the input xml data and the
expecting output:
The xml data has many foo elements (1000).

Just by conjecture, I'm guessing you want <fooGroup>
to be three groups of three.  You don't explain the
criteria, but that is the only "meaningful" interpretation I
can see.  Next time it would help if you could explain
your requirements when including an example rather than make
us guess by looking at your example.

If I've guessed correctly, this is done easiest with
adjacent grouping.

I hope this helps.

. . . . . . . . . Ken

~/t/ftemp $ cat henry.xml
<?xml version="1.0" encoding="UTF-8"?>
 <xmldata>
 <ss> s </ss>
 <nn>n </nn>
  <foo>tt</foo>
   <foo>bb</foo>
   <foo>aa</foo>
    <foo>mm</foo>
       <foo>ll</foo>
       <foo>nn</foo>
        <foo>ff</foo>
     
   <foo>gg</foo>
      <foo>ii</foo>
  <hh>h</hh>
 </xmldata>
~/t/ftemp $ xslt2 henry.xml henry.xsl
<?xml version="1.0" encoding="UTF-8"?>
<fooGroup>
   <_1st_element>
     
<_1st_element>tt</_1st_element>
     
<_2nd_element>bb</_2nd_element>
     
<_3rd_element>aa</_3rd_element>
   </_1st_element>
   <_2nd_element>
     
<_1st_element>mm</_1st_element>
     
<_2nd_element>ll</_2nd_element>
     
<_3rd_element>nn</_3rd_element>
   </_2nd_element>
   <_3rd_element>
     
<_1st_element>ff</_1st_element>
     
<_2nd_element>gg</_2nd_element>
     
<_3rd_element>ii</_3rd_element>
   </_3rd_element>
</fooGroup>~/t/ftemp $
~/t/ftemp $ cat henry.xsl
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
  xmlns:h="urn:X-henry" exclude-result-prefixes="h"
  version="2.0">

<xsl:output indent="yes"/>

<xsl:template match="xmldata">
  <xsl:for-each-group select="foo"
               
      group-adjacent="(position()-1) idiv
9">
    <fooGroup>
      <xsl:for-each-group
select="current-group()"
               
         
group-adjacent="(position()-1) idiv 3">
        <xsl:element
name="_{h:ord(position())}_element">
          <xsl:for-each
select="current-group()">
            <xsl:element
name="_{h:ord(position())}_element">
             
<xsl:copy-of select="node()"/>
           
</xsl:element>
          </xsl:for-each>
        </xsl:element>
      </xsl:for-each-group>
    </fooGroup>
  </xsl:for-each-group>
</xsl:template>

<xsl:function name="h:ord">
  <xsl:param name="pos"/>
  <xsl:number value="$pos" ordinal="1"/>
</xsl:function>

</xsl:stylesheet>
~/t/ftemp $


--
Public XSLT, XSL-FO, UBL and code list classes in Europe --
Oct 2012
Contact us for world-wide XML consulting and instructor-led
training
Free 5-hour lecture: http://www.CraneSoftwrights.com/links/udemy.htm
Crane Softwrights Ltd.         
  http://www.CraneSoftwrights.com/s/
G. Ken Holman           
       mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Google+ profile: https://plus.google.com/116832879756988317389/about
Legal business disclaimers:    http://www.CraneSoftwrights.com/legal


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--


<Prev in Thread] Current Thread [Next in Thread>