I'm looking for a way to convert HTML entity numbers into a character using plain JavaScript or jQuery.

For example, I have a string that looks like this (Thank you, jQuery! Punk.)

Range1-of-5

And what I need is:

Range1-of-5

I've found String.fromCharCode() where I can get the character with just the decimal value, but I'd like to see if anyone else has a solution before I possibly reinvent the wheel. :)

link|improve this question

That’s not an entity but a normal character reference. – Gumbo May 27 '11 at 17:27
feedback

3 Answers

up vote 4 down vote accepted
$("<div/>").html("Range1&#45;of-5").text()

http://jsfiddle.net/durilai/tkwEh/

link|improve this answer
This looks to be the simplest and most robust. Thanks! – amber May 27 '11 at 20:42
feedback

The jQuery way looks nicer, but here's a pure JS version if you're interested:

function decode(encodedString) {
    var tmpElement = document.createElement('span');
    tmpElement.innerHTML = encodedString;
    return tmpElement.innerHTML;
}

decode("Range1&#45;of-5");
link|improve this answer
feedback

No need to use jQuery for this simple task:

'Range1&#45;of-5'.replace(/&#(\d+);/g, function(match, number){ return String.fromCharCode(number); })

The same principle can be applied to &#xHHHH; and &name; entities.

link|improve this answer
This worked but as I explore corner cases I'm concerned it's not going to scale well into different use cases. I did upvote it as it strikes me as very useful, just not as robust as I think I might need going above and beyond the initial use case above. – amber May 27 '11 at 20:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.