vote up 0 vote down star

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.

flag

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 at 15:47
Ugh. Both the title and the text are poorly worded. – dmckee Feb 9 at 15:51
OK, I took a wack at it. Is it better this way? – dmckee Feb 9 at 15:57

3 Answers

vote up 4 vote down check

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|flag
That's what I was looking for. Thanks! – Jason N. Gaylord Feb 9 at 17:14
vote up 1 vote down

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|flag
Deleted my solution: this one beats it – KooiInc Feb 9 at 16:22
vote up 0 vote down

Check String.fromCharCode.

link|flag

Your Answer

Get an OpenID
or

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