XSLTGeneral questions and answers about XSLT. For issues strictly specific to the book XSLT 1.1 Programmers Reference, please post to that forum instead.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the XSLT section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
I need to iterate using for each for each element under //tableData/row/strData and //tableData/row/dblData
The problem is i dont want to write 2seperate for each for this
example
<xsl:for-each select="tableData/row/strData">
and
<xsl:for-each select="tableData/row/dblData">
instead of this - to get data under tableData/row/strData or dblData can we write a single for each.
How will the tag look like.Is it something to do with regexp.