xsl-list
[Top] [All Lists]

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

2009-11-30 09:42:17
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(_at_)nag(_dot_)co(_dot_)uk> 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.
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--





-- 

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

--~------------------------------------------------------------------
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>
--~--