Here are my files:
example.xml
<?xml version="1.0" encoding="UTF-8"?>
<bsp>
<numbers>
<string>one</string>
<string>two</string>
<string>three</string>
<string>one</string>
<string>two</string>
<string>four</string>
<string>fife</string>
</numbers>
</bsp>
complete.xml
<?xml version="1.0" encoding="UTF-8"?>
<bsp>
<first>
<team>
<member>one</member>
<member>three</member>
</team>
</first>
<second>
<mems>
<member>four</member>
<member>five</member>
</mems>
</second>
</bsp>
Output
All which are not in complete (exact match of the value of member and *stringÜ ). How to do that in xslt 2.0 with a huge file?
First we need access to the documents.
expected output
<string>two</pupil>
<string>two</pupil>
<string>fife</string>
What are the ways to accomplish this, which is recommended? edit Example now more abstract...