In my jsoup class, i retrive the text of each tag as follows
doc = Jsoup.parse(getxml,"", Parser.xmlParser());
libelle = doc.select("belle");
resulting in pin pin pin apple apple apple 34233 4433 314434
then i split it as
libel = libelleCompte.text().toString().split(" ");
the original tag is as follows
<pretty>
<belle> pin pin pin</belle>
<belle>apple apple apple</belle>
<belle>34233</belle>
<belle>4433</belle>
<belle>314434</belle>
</pretty>
the result should be
pin pin pin apple apple apple 34233 4433 314434
any idea of how to split it after each tag ?