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.
Try the String.fromCharCode() function.
As you can see, you’ll have to strip out the ampersand and pound sign.
Best regards…