[
Lists Home |
Date Index |
Thread Index
]
Hi again!
Can you help me with a additional Xpath question?
Here it is:
I have a TEIL element with a TEXT and a TEIL element containing so TEIL is
recursively contained in it self
As I create the XML I need at a moment to find the last TEXT element in a
TEIL regardless it's level... As I search for bottom TEXT element on a
printed page of my xml.
I need ABSATZ with ####### in empty TEXT at bottom of sample
I can have deep nested TEIL with TEXT I need not necesarely first level TEIL
I have this structure:
<ARTIKEL>
<AUTOR>
<AUTORAUTORVORNAME>BENNO</AUTORAUTORVORNAME>
<AUTORAUTORNACHNAME>GRUNEWALD
<FN ID="CA9312001000" ART="STERN">
<TEXT>
<ABSATZ>Dr. Benno Grunewald ist Rechtsanwalt
in Bremen und Lehrbeauftragter an der Hochschule Bremen für Arbeits-
und EDV-Recht.</ABSATZ>
</TEXT>
</FN>
</AUTORAUTORNACHNAME>
</AUTOR>
<AUFSATZTITEL>EDV-Berater - freier Beruf oder
Gewerbe?</AUFSATZTITEL>
<UNTERTITEL>Eine Kritik an der Rechtsprechung des
BFH</UNTERTITEL>
<TEIL>
<TEILUBSR>I. ....</TEILUBSR>
<TEXT>
<ABSATZ>Die....</ABSATZ>
<ABSATZ>Diese ....</ABSATZ>
<ABSATZ>###############...</ABSATZ>
</TEXT>
<TEIL>
<TEILUBSR>a) ....</TEILUBSR>
<TEXT>
<ABSATZ>Die....</ABSATZ>
<ABSATZ>Diese ....</ABSATZ>
</TEXT>
</TEIL>
</TEIL>
<TEIL>
<TEILUBSR>II. Einordnung der Tätigkeit nach
§ 18 Abs. 1 Nr. 1 EStG</TEILUBSR>
<TEXT/>
</TEIL>
</ARTIKEL>
|