Javascript String entityDecode()

Description

Javascript String entityDecode()


/**/*from  w w  w  . j av a 2 s.  c o m*/
 * String utils
 * 
 * @version $Id: string.js 1188 2010-07-23 15:25:17Z  $
 */
String.prototype.entityDecode = function() {
  return this.replace('>', '>')
         .replace('&lt;', '<')
         .replace('&quot;', '"')
         .replace('&#039;', "'")
         .replace('&amp;', '&');
}



PreviousNext

Related