|
Subject: Re: [xsl] Testing for following text() From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx> Date: Thu, 01 Nov 2007 10:25:21 -0400 |
On 01/11/2007, G. Ken Holman <gkholman@xxxxxxxxxxxxxxxxxxxx> wrote: > Then I recommend you change it to the following: > > match="s[(ancestor::b[1]//text()[normalize-space()])[last()] >> .]" > > ... so that you catch text nodes that have non-white-space > characters, or alternatively that you ensure all white-space-only > text nodes are removed from the source tree by either an > <xsl:strip-space> instruction or at invocation. > > I'm thinking that with the original proposal any indentation found in > the source tree would allow the <s> to be matched.
you sure?
t:\ftemp>type sascha.xml
<a>
aaa
<b>
bbb
<c>
ccc
<s/>
</c>
BBB
</b>
AAA
<b>
bbb
<c>
ccc
<s/>
</c>
</b>
AAA
</a>t:\ftemp>type sascha.xsl <?xml version="1.0" encoding="US-ASCII"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:template match="/"> <xsl:apply-templates select="//s"/> </xsl:template>
<xsl:template match="s"> <xsl:value-of select="position()"/>: no </xsl:template>
<xsl:template match="s[(ancestor::b[1]//text())[last()] >> .]">
<xsl:value-of select="position()"/>: yes
</xsl:template></xsl:stylesheet> t:\ftemp>call saxon8 sascha.xml sascha.xsl
t:\ftemp>type sascha2.xsl <?xml version="1.0" encoding="US-ASCII"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">
<xsl:template match="/"> <xsl:apply-templates select="//s"/> </xsl:template>
<xsl:template match="s"> <xsl:value-of select="position()"/>: no </xsl:template>
</xsl:stylesheet> t:\ftemp>call saxon8 sascha.xml sascha2.xsl
-- Comprehensive in-depth XSLT2/XSL-FO1.1 classes: Austin TX,Jan-2008 World-wide corporate, govt. & user group XML, XSL and UBL training RSS feeds: publicly-available developer resources and training G. Ken Holman mailto:gkholman@xxxxxxxxxxxxxxxxxxxx Crane Softwrights Ltd. http://www.CraneSoftwrights.com/s/ Box 266, Kars, Ontario CANADA K0A-2E0 +1(613)489-0999 (F:-0995) Male Cancer Awareness Jul'07 http://www.CraneSoftwrights.com/s/bc Legal business disclaimers: http://www.CraneSoftwrights.com/legal
| Current Thread |
|---|
|
| <- Previous | Index | Next -> |
|---|---|---|
| Re: [xsl] Testing for following tex, Andrew Welch | Thread | Re: [xsl] Testing for following tex, Andrew Welch |
| Re: [xsl] Testing for following tex, Andrew Welch | Date | Re: [xsl] Testing for following tex, Andrew Welch |
| Month |