How can I convert an HTML formatted string to XML?

emmanuel

New member
I have a string with HTML content, and I need it in XML format.

For example, I need that this convert:

<input id="Button1" type="button" value="button" /><input id="File1" type="file" />

to

<input id="Button1" type="button" value="button"></button><input id="File1" type="file"></input>
 
Back
Top