XmlHelper = {};
XmlHelper.getExp = function(str)
{
return new RegExp(str, 'g');
}
XmlHelper.encodeInvalidChars = function(str) {
return str
.replace(this.getExp('&'),'&')
.replace(this.getExp('<'),'<')
.replace(this.getExp('>'),'>')
.replace(this.getExp('\''),''')
.replace(this.getExp('"'),'"')
}
XmlHelper.decodeInvalidChars = function(str) {
return str
.replace(this.getExp('&'),'&')
.replace(this.getExp('<'),'<')
.replace(this.getExp('>'),'>')
.replace(this.getExp('''),'\'')
.replace(this.getExp('"'),'"')
}
субота, 20 лютого 2010 р.
JavaScript: replace XML special characters
Підписатися на:
Дописати коментарі (Atom)
Немає коментарів:
Дописати коментар