I found some strange characters in a xml file that I have to read to populate a dbf table.
I'm sure that the person who typed in his program insert this
OSS - BULK REPAIR
and not this
OSS – BULK REPAIR
but unfortunately his export program create this xml
- Code: Select all Expand view
<?xml version="1.0" encoding="utf-8"?>
<SERVICE_TYPES>
<item>
<SERVICE_TYPE>2002</SERVICE_TYPE>
<DESCRIPTION>OSS – BULK REPAIR</DESCRIPTION>
</item>
</SERVICE_TYPES>
And I have to read it for populate my dbf table
How can I transform xml file in order to obtain (for instance)
OSS - BULK REPAIR
and not
OSS – BULK REPAIR
This is another piece of the same xml you can note that there are not strange characters
- Code: Select all Expand view
<item>
<SERVICE_TYPE>1102</SERVICE_TYPE>
<DESCRIPTION>SWAP-OPTICAL ENGINE(EEE)</DESCRIPTION>
</item>
Many thanks