JavaScriptで文字列を解析し、単語のみを抽出する方法。ただし、結果の配列には、単語を区切る他のテキスト部分を残します。
" This is - a string. With two and one spaces!"
に:
[' ', 'This', ' - ', 'a', ' ', 'string', '. ', 'With']
JavaScriptで文字列を解析し、単語のみを抽出する方法。ただし、結果の配列には、単語を区切る他のテキスト部分を残します。
" This is - a string. With two and one spaces!"
に:
[' ', 'This', ' - ', 'a', ' ', 'string', '. ', 'With']
あなたは書ける:
var resultArray = origString.split(/\b/);
リンク:
String.split
\b
(ページで「単語の境界」を検索)