Convert escaped html ASCII codes to plain text using JavaScript - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T03:22:12Z http://stackoverflow.com/feeds/question/528682 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/528682/convert-escaped-html-ascii-codes-to-plain-text-using-javascript 0 Convert escaped html ASCII codes to plain text using JavaScript Jason N. Gaylord 2009-02-09T15:43:08Z 2009-02-09T16:18:47Z <p>I'm looking to convert a string of html entities specifying ASCII codes (ie: &amp;#97;) to the ASCII characters they represent (ie: &#97;). I'm using a property of an object and trying to assign a value. For instance:</p> <pre><code>object.Text(""); </code></pre> <p>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.</p> http://stackoverflow.com/questions/528682/convert-escaped-html-ascii-codes-to-plain-text-using-javascript/528690#528690 4 Answer by Josh Stodola for Convert escaped html ASCII codes to plain text using JavaScript Josh Stodola 2009-02-09T15:45:11Z 2009-02-09T15:47:55Z <p>Try the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/String/fromCharCode" rel="nofollow">String.fromCharCode()</a> function.</p> <pre><code>alert(String.fromCharCode(97)); </code></pre> <p>As you can see, you'll have to strip out the ampersand and pound sign.</p> <p>Best regards...</p> http://stackoverflow.com/questions/528682/convert-escaped-html-ascii-codes-to-plain-text-using-javascript/528695#528695 0 Answer by CMS for Convert escaped html ASCII codes to plain text using JavaScript CMS 2009-02-09T15:45:52Z 2009-02-09T15:45:52Z <p>Check <a href="http://www.w3schools.com/jsref/jsref_fromCharCode.asp" rel="nofollow">String.fromCharCode</a>.</p> http://stackoverflow.com/questions/528682/convert-escaped-html-ascii-codes-to-plain-text-using-javascript/528786#528786 1 Answer by Ates Goral for Convert escaped html ASCII codes to plain text using JavaScript Ates Goral 2009-02-09T16:12:21Z 2009-02-09T16:12:21Z <p>To convert all numerical character entities in a string to their character equivalents you can do this:</p> <pre><code>str.replace(/&amp;#(\d+);/g, function (m, n) { return String.fromCharCode(n); }) </code></pre>