I have to write console app that parses XML Doc two times.
First it extracts some content and changes all <
and >
with <; >;
Why? Because my company uses it's own language which looks like some horror creature and instead of < >
it uses < >
for divs and stuff
This is not a problem
Then I have to take generated file and reverse it - change < >
back to < >
When I try to load the file to reverse the process I receive and error that you can't start a line with ; or 0x3B
. Is there any way to override it?
This how example line looks at the beginning
<img vE="|10416|2|3||" style="padding-top:153px;padding-left:266px;" imageIndex="312" />
This is an edited one
<;img vE="|10416|2|3||" style="padding-top:153px;padding-left:266px;" imageIndex="312" />;
And I need to have possibility to revert the process