Reputation: 26132
How in JavaScript to parse string and extract only words, but leave int the resulting array the other text parts that separate words.
" This is - a string. With two and one spaces!"
to:
[' ', 'This', ' - ', 'a', ' ', 'string', '. ', 'With']
Upvotes: 0
Views: 274
Reputation: 183271
You can write:
var resultArray = origString.split(/\b/);
Links:
String.split
\b
or "word boundary")Upvotes: 4