This question might reflect my stark ignorance on Xpath knowledge but I still dare to ask it.I have my xml structure that goes something in similar to this:\[code\]<record><data><type>student</type><name>Kevin</name></data><data><type>teacher</type><name>Matt</name></data></record>\[/code\]How do I write xpath to select Matt, the teacher? Does "//record/data/name" always return the first/last/all/unguaranteed record it matches?ThanksKevin