Your xslt will be
<xsl:template match="/rootnode">
<xsl:for-each select="child">
<xsl:if test="contains(@id,'child')">
... do your stuff here....
</xsl:if>
</xsl:for-each>
</xsl:template>
You can also use starts-with
function see http://www.w3schools.com/xpath/xpath_functions.asp
for complete reference
ajay_whiz
2010-08-17 06:56:17