I tried to parse the data from data.xml file but I have a weird problem:
If my data look like this, it will parse fine:
<data> test1, test2, test3</data>
When I change my data to:
<data>
test1, test2, test2
</data>
It won't work any more. What happened is the xml only parse the data right after the begin_tag, if the data on the new line after begin_tag, it just ignore. Is anyone know how to fix the problem? Thank you.
Toan