I have a string like this:
var str = \"I\'m a very^ we!rd* Str!ng.\";
What I would like to do is removing all special characters from the a
str.toLowerCase().replace(/[\*\^\'\!]/g, '').split(' ').join('-')