Home. 
.

transparent

transparent

transparent

Altova Mailing List Archives


Re: [xsl] Testing for following text()

From: "G. Ken Holman" <gkholman@-------------------->
To:
Date: 11/1/2007 2:27:00 PM
At 2007-11-01 13:34 +0000, Andrew Welch wrote:



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?

Yes, I'm quite sure.  It was obvious by visually inspecting the 
sample input XML ... there are so many text nodes there.  Did you run 
your own suggestion as a test?



Here, let me take the time to do it for you ... the answer is below.



I was only trying to help.  If I've misunderstood the original 
poster's question, then I withdraw my suggestion and I apologize.



. . . . . . . . . . . Ken







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:output method="text"/>



<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>java -Xms200m -Xmx700m -jar p:\xml\xslt\saxon8\saxon8.jar 
sascha.xml sascha.xsl

1: yes

2: yes



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:output method="text"/>



<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()[normalize-space()])[last()] >> .]">

    <xsl:value-of select="position()"/>: yes

</xsl:template>



</xsl:stylesheet>
t:\ftemp>call saxon8 sascha.xml sascha2.xsl

t:\ftemp>java -Xms200m -Xmx700m -jar p:\xml\xslt\saxon8\saxon8.jar 
sascha.xml sascha2.xsl

1: yes

2: no



t:\ftemp>rem Done!




--
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


transparent
Print
Mail
Like It
Disclaimer
.

These Archives are provided for informational purposes only and have been generated directly from the Altova mailing list archive system and are comprised of the lists set forth on www.altova.com/list/index.html. Therefore, Altova does not warrant or guarantee the accuracy, reliability, completeness, usefulness, non-infringement of intellectual property rights, or quality of any content on the Altova Mailing List Archive(s), regardless of who originates that content. You expressly understand and agree that you bear all risks associated with using or relying on that content. Altova will not be liable or responsible in any way for any content posted including, but not limited to, any errors or omissions in content, or for any losses or damage of any kind incurred as a result of the use of or reliance on any content. This disclaimer and limitation on liability is in addition to the disclaimers and limitations contained in the Website Terms of Use and elsewhere on the site.

.
.

transparent

transparent