G
Guest
Hi, All,
I want to remove xml namespace attribute
(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance") in the following file
<AutoData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Table1>
<Data1> 10 </Data1>
<Data2> 20 </Data2>
<Data3> 40 </Data3>
<Table1>
</AutoData>
So finally the file without namespace is like this:
<AutoData >
<Table1>
<Data1> 10 </Data1>
<Data2> 20 </Data2>
<Data3> 40 </Data3>
<Table1>
</AutoData>
Any advice?
Thanks
Martin
I want to remove xml namespace attribute
(xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance") in the following file
<AutoData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Table1>
<Data1> 10 </Data1>
<Data2> 20 </Data2>
<Data3> 40 </Data3>
<Table1>
</AutoData>
So finally the file without namespace is like this:
<AutoData >
<Table1>
<Data1> 10 </Data1>
<Data2> 20 </Data2>
<Data3> 40 </Data3>
<Table1>
</AutoData>
Any advice?
Thanks
Martin