Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
var str = 'single words "fixed string of words"';
var astr = str.split(" "); // need fix

i want the array to be like: single, words, fixed string of words.

share|improve this question

3 Answers

up vote 16 down vote accepted
str.match(/\w+|"[^"]+"/g)

//single, words, "fixed string of words"
share|improve this answer
1  
this seems to split on '.' and '-' as well as spaces. This should probably be str.match(/\S+|"[^"]+"/g) – Awalias Apr 9 at 13:22

This uses a mix of split and regex matching.

var str = 'single words "fixed string of words"';
var matches = /".+?"/.exec(str);
str = str.replace(/".+?"/, "").replace(/^\s+|\s+$/g, "");
var astr = str.split(" ");
if (matches) {
    for (var i = 0; i < matches.length; i++) {
        astr.push(matches[i].replace(/"/g, ""));
    }
}

This returns the expected result, although a single regexp should be able to do it all.

// ["single", "words", "fixed string of words"]

Update And this is the improved version of the the method proposed by S.Mark

var str = 'single words "fixed string of words"';
var aStr = str.match(/\w+|"[^"]+"/g), i = aStr.length;
while(i--){
    aStr[i] = aStr[i].replace(/"/g,"");
}
// ["single", "words", "fixed string of words"]
share|improve this answer
thank, i am going for the improved version – Remi May 12 '10 at 10:23
There's a problem with the improved version, where if you use a non-word-character like "#" it will disappear. – tuhoojabotti Jun 26 '12 at 22:03

I noticed the disappearing characters, too. I think you can include them - for example, to have it include "+" with the word, use something like "[\w\+]" instead of just "\w".

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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