Skip to content

Instantly share code, notes, and snippets.

@shivergard
Forked from CatTail/htmlentity.js
Last active August 29, 2015 14:17
Show Gist options
  • Save shivergard/77f5b97b66d55f70bd52 to your computer and use it in GitHub Desktop.
Save shivergard/77f5b97b66d55f70bd52 to your computer and use it in GitHub Desktop.
// encode(decode) html text into html entity
var decodeHtmlEntity = function(str) {
return str.replace(/&#(\d+);/g, function(match, dec) {
return String.fromCharCode(dec);
});
};
var encodeHtmlEntity = function(str) {
var buf = [];
for (var i=str.length-1;i>=0;i--) {
buf.unshift(['&#', str[i].charCodeAt(), ';'].join(''));
}
return buf.join('');
};
var entity = '高级程序设计';
var str = '高级程序设计';
console.log(decodeHtmlEntity(entity) === str);
console.log(encodeHtmlEntity(str) === entity);
// output:
// true
// true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment