I need a clear text with only words, excluding all digits, extra spaces, dashes, commas, dots, brackets, etc. It is used for a word generation algorithm (taken from gamasutra). I suppose that regular expression can help here. How can I do this with help of String.split?
UPD:
Input: I have 1337 such a string with different stuff in it: commas, many spaces, digits - 2 3 4, dashes. How can I remove all stuff?
Output: I have such a string with different stuff in it commas many spaces digits dashes How can I remove all stuff