Convert escaped html ASCII codes to plain text using JavaScript - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T03:22:12Zhttp://stackoverflow.com/feeds/question/528682http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/528682/convert-escaped-html-ascii-codes-to-plain-text-using-javascript0Convert escaped html ASCII codes to plain text using JavaScriptJason N. Gaylord2009-02-09T15:43:08Z2009-02-09T16:18:47Z
<p>I'm looking to convert a string of html entities specifying ASCII codes (ie: &#97;) to the ASCII characters they represent (ie: a). 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#5286904Answer by Josh Stodola for Convert escaped html ASCII codes to plain text using JavaScriptJosh Stodola2009-02-09T15:45:11Z2009-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#5286950Answer by CMS for Convert escaped html ASCII codes to plain text using JavaScriptCMS2009-02-09T15:45:52Z2009-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#5287861Answer by Ates Goral for Convert escaped html ASCII codes to plain text using JavaScriptAtes Goral2009-02-09T16:12:21Z2009-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(/&#(\d+);/g, function (m, n) { return String.fromCharCode(n); })
</code></pre>