Hi All,
How do i get matching node values using xpath?
Below is scenario:
<xref rid="ch1" ref-type="fig">testing data</xref>
<xref rid="ch2" ref-type="fig">test</xref>
<xref rid="ch3" ref-type="fig">abc</xref>
<xref rid="ch4" ref-type="fig">tester </xref>
Output:
<xref rid="ch1" ref-type="fig">testing data</xref>
<xref rid="ch2" ref-type="fig">test</xref>
<xref rid="ch4" ref-type="fig">tester </xref>
I want to get only those xref node whose data is start with test using Xpath..
Thanks in Advance!!
Vikas