0

如何在 JavaScript 中解析字符串并仅提取单词,但在结果数组中保留分隔单词的其他文本部分。

"  This is - a string.  With two  and one spaces!"

至:

['  ', 'This', ' - ', 'a', ' ', 'string', '.  ', 'With']
4

1 回答 1

4

你可以写:

var resultArray = origString.split(/\b/);

链接:

于 2012-09-21T13:49:14.410 回答