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 に答える