xsl-list
[Top] [All Lists]

Re: [xsl] Fwd: text nodes

2008-09-18 07:36:06
Thank you Sam!

i meant by ' stop on the first occurrence on the "[ ]" ' this:

for this input:

<some_element>
<a>hello</a> some text 1<br/>
some text 2
some text 3
<a>hello 2</a> some text 4
some text 5
some text 6
</some_element>

i want this output:

"some text 1 some text 2 some text 3"  and
"some text 4 some text 5 some text 6"

I am not sure how to deal with <br/> elements. I'm using xsl to
extract data from HTML.
i can't make the xsl you sent me to work. If this info helps you to
help me ... let me know.

best regards!

L.

On Wed, Sep 17, 2008 at 10:52 AM, Sam Byland <shbyland(_at_)verizon(_dot_)net> 
wrote:
the output is:

"some text 1 some text 2 some text 3"

Lucas,

I used:

<some_element>
<a>hello</a> some text 1<br/>
some text 2
some text 3
<a>hello 2</a>
</some_element>

for the input.  Assuming you only want to output the text up to the next <a>
element, then something like this (XSLT1.0) might get you in the right
direction:

<xsl:template match="a">

  <xsl:variable name="next_a"
select="generate-id(following-sibling::a[1])"/>

  <xsl:for-each select="following-sibling::text()[ generate-id(
following-sibling::a[1] ) = $next_a ]">
      <xsl:value-of select="."/>
  </xsl:for-each>

</xsl:template>

<xsl:template match="some_element">
  <xsl:apply-templates select="a"/>
</xsl:template>

I'm not totally sure what you meant by ' stop on the first occurrence on the
"[ ]" '

...sam


--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--





-- 
Ing. Lucas Lain

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>