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:21:09


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