up vote 1 down vote favorite
1
share [g+] share [fb]

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.

link|improve this question

The string "a" is an HTML character entity. Do you mean to ask how to HTML-decode a string? That's not really what you've asked. – Rob Kennedy Feb 9 '09 at 15:47
Ugh. Both the title and the text are poorly worded. – dmckee Feb 9 '09 at 15:51
OK, I took a wack at it. Is it better this way? – dmckee Feb 9 '09 at 15:57
feedback

3 Answers

up vote 7 down vote accepted

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...

link|improve this answer
That's what I was looking for. Thanks! – Jason N. Gaylord Feb 9 '09 at 17:14
feedback

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); })
link|improve this answer
Deleted my solution: this one beats it – KooiInc Feb 9 '09 at 16:22
feedback

Check String.fromCharCode.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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