Javascript String decodeXML()
String.prototype.decodeXML = function () { var xml_to_chr = { '&': '&', '"': '"', '<': '<', '>': '>' };//from w ww . j a v a2s .com return this.replace(/("|<|>|&)/g, function(str, item) { return xml_to_chr[item]; }); };