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

RSS Icon Subscribe to comments

You need to login to post a comment.