Assumung you want so select a nodes and b nodes, you can use this expressions:
/a | /a/b/c
That will select all a nodes and (union) all c nodes. Note that it will only select them on the specified levels in your document. You can also go for something like:
//a | //c
Maybe you can give us some more info on the purpose of this query?
You can also you XQuery, like this:
<div class="breadcrumb">
{
for $d in doc("test.xml")/a/b/c return
<a href="somepage.php?id={fn:data($d/@Text)}">{fn:data($d/@Text)}</a>
}
</div>
on the following input
<a>
<b>
<c Text="Cat1" />
<c Text="Cat2" />
<c Text="Cat3" />
</b>
<b>
<c Text="Cat4" />
<c Text="Cat5" />
</b>
</a>
you will get this output:
<div class="breadcrumb">
<a href="somepage.php?id=Cat1">Cat1</a>
<a href="somepage.php?id=Cat2">Cat2</a>
<a href="somepage.php?id=Cat3">Cat3</a>
<a href="somepage.php?id=Cat4">Cat4</a>
<a href="somepage.php?id=Cat5">Cat5</a>
</div>
//*[not(self::b)]will select all nodes except ofb. – Aleh Douhi May 9 '12 at 14:52