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.
i want the array to be like: single, words, fixed string of words. |
|||
|
|
|
|||||
|
|
This uses a mix of split and regex matching.
This returns the expected result, although a single regexp should be able to do it all.
Update And this is the improved version of the the method proposed by S.Mark
|
|||||
|
|
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". |
|||
|
|