Re: [xsl] Counting the number of elements within and outputting a variable holding analyze-string results wrapped by elements in a for-each

Subject: Re: [xsl] Counting the number of elements within and outputting a variable holding analyze-string results wrapped by elements in a for-each
From: Alex Muir <alex.g.muir@xxxxxxxxx>
Date: Mon, 30 Nov 2009 14:41:52 +0000
Thanks all

The copy of was what I was needing.

<xsl:for-each select="$MNTISequence">
         <xsl:copy>
              <xsl:copy-of select="@*"/>
         </xsl:copy>
  </xsl:for-each>

Alex


On Mon, Nov 30, 2009 at 2:19 PM, David Carlisle <davidc@xxxxxxxxx> wrote:
>
>
>                 <xsl:value-of select="."/>
>
> gives the string value of the selection which is empty in your case, you
> want
>
>                 <xsl:copy-of select="."/>
>
>
>
> except that
>
>   <xsl:for-each select="$varAnalyzeStr">
>           <xsl:copy-of select="."/>
>  </xsl:for-each>
>
> is more easily written
>           <xsl:copy-of select="$varAnalyzeStr"/>
>
>
> Also, although not related:
>
>     <xsl:element name="section">
>                            <xsl:attribute name="href"
select="regex-group(1)"/>
>                        </xsl:element>
>
> is more eaily written
>
>  <section href="{regex-group(1)}"/>
>
> David
>
> ________________________________________________________________________
> The Numerical Algorithms Group Ltd is a company registered in England
> and Wales with company number 1249803. The registered office is:
> Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.
>
> This e-mail has been scanned for all viruses by Star. The service is
> powered by MessageLabs.
> ________________________________________________________________________
>
>



--

Alex
https://sites.google.com/a/utg.edu.gm/alex

Current Thread