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.

link|improve this question

What do you want to split it on? You said 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
@nnnnnn: I'm reading this doc from MDN. But at the same time, I doing some experiment. And this is my first attempt to split sentence into words. – Nawaz Dec 9 '11 at 6:39
feedback

4 Answers

up vote 1 down vote accepted

Here is a jsfiddle example of what you asked: http://jsfiddle.net/ayezutov/BjXw5/1/

Basically, the code is very simple:

var y = "This @is a #long $string. Alright, lets split this.";
var regex = /[^\s]+/g; // This is "multiple not space characters, which should be searched not once in string"

var match = y.match(regex);
for (var i = 0; i<match.length; i++)
{
    document.write(match[i]);
    document.write('<br>');
}

UPDATE: Basically you can expand the list of separator characters: http://jsfiddle.net/ayezutov/BjXw5/2/

var regex = /[^\s\.,!?]+/g;

UPDATE 2: Only letters all the time: http://jsfiddle.net/ayezutov/BjXw5/3/

var regex = /\w+/g;
link|improve this answer
Your both examples give wrong result. The result is containing the special characters. – Nawaz Dec 9 '11 at 7:06
Hey, i thought this was your intention :) if you wish only letters in output: jsfiddle.net/ayezutov/BjXw5/3. var regex = /\w+/g; – Alexander Yezutov Dec 9 '11 at 7:15
+1. That is good. It seems this can be written in many different ways. – Nawaz Dec 9 '11 at 7:18
Yes, you are right. Basically, for english, \w is a more elegant form of [a-zA-Z0-9], but \w would work with other languages as well. – Alexander Yezutov Dec 9 '11 at 7:28
@AlexanderYezutov You are wrong. \w = [a-zA-Z0-9_] – FailedDev Dec 9 '11 at 8:04
show 1 more comment
feedback

Use \s+ to tokenize the string.

link|improve this answer
That doesn't seem to work. I did var re = /\s+/; var words = re.exec(x); What am I doing wrong? – Nawaz Dec 9 '11 at 6:41
1  
@Nawaz var words = x.split(/\s+/); – Kai Dec 9 '11 at 6:44
1  
@Nawaz Also try var words = y.split(/[^A-Za-z0-9]+/); to strip out punctuation, too. – Kai Dec 9 '11 at 6:47
@Kai: Of that helped for the first string. But it doesn't work with the second string y. – Nawaz Dec 9 '11 at 6:47
@Kai: The next one worked. Thanks. :-) – Nawaz Dec 9 '11 at 6:48
feedback
var words = y.split(/[^A-Za-z0-9]+/);
link|improve this answer
feedback

exec can loop through the matches to remove non-word (\W) characters.

var A= [], str= "This @is a #long $string. Alright, let's split this.",
rx=/\W*([a-zA-Z][a-zA-Z']*)(\W+|$)/g, words;

while((words= rx.exec(str))!= null){
    A.push(words[1]);
}
A.join(', ')

/*  returned value: (String)
This, is, a, long, string, Alright, let's, split, this
*/
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.