Xpath Node String return Type

Hi,
I have a question about Xpath node. I have ths xml document parsed by HtmlParser:
 
<form action="/references" class="citationExportBottom" method="post" xmlns="http://www.w3.org/1999/xhtml">
    <input name="handle" type="hidden" value="10281/4925">
    </input>
    <input name="handle" type="hidden" value="10281/13083">
    </input>
   <input name="handle" type="hidden" value="10281/45939">
    </input>............
    ..................<input>....</input>...
</form
 
now I should show the values as output, with the Xpath node I've used this expression 
//pre:input/@value and as return Type String but it send as output only the first value; how is it possible to obtain all the values?

Thanks,
Samuele

 

What happens if you let it return a node set/collection instead of a string? You can then split the collection into individual cells.

ok thanks!

After the splitting it return N columns like tha

<?xml version='1.0' encoding='UTF-8'?>
<fragment value="10281/8357">
</fragment>
 
so then I tried to call another Xpath as   //pre:fragment@/value but it doesn't return anything...