I am trying to parse through the document.xml file that is created by a word document. The document has been modified by different people. There is a value in an column that displays in the word document as 0x03 but when I check the document.xml I see
<w:r w:rsidRPr="00811BF7">
<w:rPr>
<w:rFonts w:eastAsia="DengXian" w:cs="Times New Roman"/>
<w:szCs w:val="21"/>
</w:rPr>
<w:t>0x</w:t>
</w:r>
<w:r w:rsidRPr="00811BF7">
<w:rPr>
<w:rFonts w:eastAsia="DengXian" w:cs="Times New Roman"/>
<w:szCs w:val="21"/>
<w:lang w:eastAsia="zh-CN"/>
</w:rPr>
<w:t>03</w:t>
</w:r>
It looks like the w:lang is set for the "03" only. There is multiple instances of this throughout the document. Is there anyway to remove this?
Andy