briankeever.com

Cognition, Creativity & Computing

briankeever.com header image 4

Entries Tagged as 'Uncategorized'

How to Scrub XML Squeeky Clean

August 31st, 2007 · 2 Comments

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;
  […]

[Read more →]

Tags: Uncategorized