文字列!
(前後のスペース) と 1 つの char ごとに文字列を分割する必要があり|
ます。
function split (str) {
return str.split (/\s!\s/)
}
result = split ("hello world ! hello | world! hi ");
console.log (result); // result must be: ["hello world", "hello", "world! hi "]
私はそれを行う方法を理解できません。今私がしたことは、 だけで分割してい!
ます。Plus charは、正規表現を|
意味するため、スクリーニングする必要があります。OR