Ever have to deal with international Xml with funky characters that prevent Microsoft’s Xml Dom from reading the data? As the html that makes up the web slowly transitions to (x)html strict, Xml is easily the most widely used language on the planet.
using System;
using System.Collections.Generic;
using System.Text;
using System.Xml;namespace htmlCleaner {
public class Cleaner {
string source, result;
[…]