|
I have an application that writes to an a xml file like this:
<sep__dates><sep_date>thursday</sep_date><sep_dates>
as you can see, everything is on one line,
however when i read it from the xml, i need to parse through it as if it was like this:
<sep_dates>
<sep_date>
thursday
</sep_date>
</sep_dates>
is there some way i can do this?
thanks in advance
|