views:

2578

answers:

3

I'm looking to convert a string of html entities specifying ASCII codes (ie: a) to the ASCII characters they represent (ie: a). I'm using a property of an object and trying to assign a value. For instance:

object.Text("");

When I pass is the string representing the entity, I get the same string back. I can't find the function to convert entities to the characters they represented.

+5  A: 

Try the String.fromCharCode() function.

alert(String.fromCharCode(97));

As you can see, you'll have to strip out the ampersand and pound sign.

Best regards...

Josh Stodola
That's what I was looking for. Thanks!
Jason N. Gaylord
A: 

Check String.fromCharCode.

CMS
+1  A: 

To convert all numerical character entities in a string to their character equivalents you can do this:

str.replace(/&#(\d+);/g, function (m, n) { return String.fromCharCode(n); })
Ates Goral
Deleted my solution: this one beats it
KooiInc