Subject:XSLT FOR-EACH HELP Author:amhi craig Date:04 Dec 2007 11:21 AM
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.