Tagged Questions
0
votes
4answers
78 views
Tokenizing strings using regular expression in Javascript
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 ...