Sorry I forgot the "/" This is a response that the server send to me. In the message's body there are these lines:
<method><name>list</name><object>webuser</object><attribute><name>returnValue</name><value> 0</value></attribute><attribute><name>returnComment</name><value></value></attribute> <attribute><name>nbstart</name><value>0</value></attribute> </method> This is a unique string without any space and I must get a value contents between tha tag <value>.... and ... </value> I try to use a regular expression like : <name>returnValue</name><value>(\d+)</value> but it doesn't match with the wordn that I want. What can i do? -Raffo

