|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: String Match
<xsl:template match="//div3//li">
<xsl:if test="contains(. , 'ILe')">
<xsl:copy-of select='ancestor::div3'/>
</xsl:if>
</xsl:template>
If you want to copy from div3, why are you going down to li and then
coming back up? Also as discussed on this list last week starting a
match with // is almost never what you want to do (it almost never makes
any difference, and probably just avoids any optimisations the system
has for simple matches)
It looks like you want to match on any div3 that has an li descendent
with text value ILe
so that would be
<xsl:template match="div3[.//li[contains(.,'Ile')]]">
<xsl:copy-of select="."/>
</xsl:template>
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








