Hey All. I'm trying to do a wildcard value of select on a node and I was wondering if anyone can help. The Product Image will be numbered from 1 to x but in my target XML file I'd like to have it in a replicant tag, <ProductImage>
Then the XSL File:
<xsl:template match="/">
<accessoryProduct>
<accessoryDescription>
<defaultDescription>
<xsl:value-of select="*ProdDetail/ProductImage*"/>
</defaultDescription>
</accessoryDescription>
</accessoryProduct>
</xsl:template>
</xsl:stylesheet>
I'm trying to do a wildcard search on the product image. Any ideas?
Also, I'll be doing a batch transformation on this (found a script on here that works great, without the wildcards though).