Suppose I've a long string containing newlines and tabs as:
var x = "This is a long string.\n\t This is another one on next line.";
So how can we split this string into tokens, using regular expression?
I don't want to use .split(' ') because I want to learn Javascript's Regex.
A more complicated string could be this:
var y = "This @is a #long $string. Alright, lets split this.";
Now I want to extract only the valid words out of this string, without special characters, and punctuations.
s.split(' ')but also you mentioned newlines and tabs. You seem to be looking for a regex tutorial, which isn't really Stack Overflow's focus. – nnnnnn Dec 9 '11 at 6:37