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
<div class="xml" id="{CB}" style="font-family: monospace;">
<?xml version="1.0" encoding="utf-8"?>
<SERVICE_TYPES>
  <item>
   <SERVICE_TYPE>2002</SERVICE_TYPE>
   <DESCRIPTION>OSS – BULK REPAIR</DESCRIPTION>
  </item>
</SERVICE_TYPES>
 </div>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
<div class="xml" id="{CB}" style="font-family: monospace;">
  <item>
   <SERVICE_TYPE>1102</SERVICE_TYPE>
   <DESCRIPTION>SWAP-OPTICAL ENGINE(EEE)</DESCRIPTION>
  </item>
 </div>Many thanks
info@marcoboschi.it