|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Test processing instruction as first preceding sibling
Hi guys,
I have a doubt about testing preceding-sibling
processing-instruction.
I have this xml:
<root>
<child1>
child 1
</child1>
<?proc?>
<child2>
child 2
</child2>
</root>
And I need to know if child2 has the first
preceding-sibling as a processing-instruction. In this case it should
return true.
The xml can come like this too:
<root>
<child1>
child 1
</child1>
<child2>
child 2
</child2>
</root>
In this case it should return false
and like this:
<root>
<?proc?>
<child1>
child 1
</child1>
<child2>
child 2
</child2>
</root>
and here false too.
I tryed something like this
preceding-sibling::*[1]/name()|preceding-sibling()[1]/name = 'proc'
but it didn4t work.
Can anyone help me??
Thanks!!
Alexandre
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






