xsl-list
[Top] [All Lists]

AW: use preceding element or self

2005-04-28 23:59:26
Hi 
Actually I need to check first if the par[(_at_)class='Komm_H3'] in my current 
<Norm1> has a string right at the beginning of the node(), that will say before 
any <inline> or any other element. If not, I need the previous one that 
fullfills this requirement.
In my Example for the first 5 "<Norm1>" I would have selected 
"EINKOMMENSTEUER", for the next 2 "UMSATZSTEUER", for the last one "BAO, 
DOPPELBESTEUERUNG"

My xsl template tries to check if there is a string with more than 8 characters 
right at the beginning of the node(), instead of checking if it is capitalized 
or not. 

Christoph

-----Ursprüngliche Nachricht-----
Von: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk] 
Gesendet: Donnerstag, 28. April 2005 17:22
An: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Betreff: Re: [xsl] use preceding element or self


If there is no capitalized word

what is a capitalised "word" here, is it the first text node or do you
mean that you have to tokenise the content and find any capitilised word
in the content?

eg: <par class="Komm_H3" xml:lang="de">EINKOMMENSTEUER<linebreak/>
                                <inline class="*Paragraph">§ 3

--> EINKOMMENSTEUER


                <par class="Komm_H3" xml:lang="de">
                                <inline class="*Paragraph">§ 4 Abs 4 Z 


--> nothing, get previous one

                        <par class="Komm_H3" xml:lang="de">BAO, 
DOPPELBESTEUERUNG</par>


--> ??

if you just want to get the nearest par class="Komm_H3" that has a
non-white text node then


seelct="(.|preceding-sibling::par[(_at_)class='Komm_H3'])[text()[1][normalize-space()]][last()]

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


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