Reg exp to replace the whole word if any word contains any non alphanumeric character or space
- by Andrew
e.g
string = "This is a re@lly long long,long! sentence";
becomes
string = "This is a long sentence";
Basically so all non-alphanumeric words or removed keeping spaces in tacked
Any ideas?