remove special characters


/ Published in: JavaScript
Save to your folder(s)



Copy this code and paste it in your HTML
  1. var re = /\$|\u00A3|\u20AC|,|@|#|~|`|\%|\*|\^|\&|\(|\)|\+|\=|\[|\-|\_|\]|\[|\}|\{|\;|\:|\'|\"|\<|\>|\?|\||\\|\!|\$|\./g;
  2. // remove special characters like "$" and "," etc...
  3.  
  4. 'my string'.replace(re, "")

Report this snippet


Comments


You need to login to view comments.