文中の各単語の文字数を数え、2〜14文字の間であるかどうかをテストするコードを開発したいと思います。文の各単語の文字数
偽=結果1 =真
それはその後、2と14文字の間にある場合はそれ以外の結果1
ここに私のコードです:
var sentence = "Now is the time for all men"
var re = /\s+/;
var resultat1 = false;
var nameList = sentence.split(re); //cutting the sentence into words
console.log(nameList); //List of words in the sentence
var NbMot = nameList.length; //Number of words in the sentence
var NbCarMot = 0; //Numer of caracter in each word
for (i = 0; i < NbMot; i++) {
NbCarMot = (nameList[i].length); //Numer of caracter in each word
console.log(NbCarMot);
}
console.log(NbCarMot);
if (NbCarMot <= 14) {
resultat1 = true;
}
console.log(resultat1)
を使用して、この簡単な方法を試してください。 – musefan
そして何が問題なのですか? – AceKYD
私はあなたにスニペットを作成しました - 実際には[mcve]と期待された実際の出力の説明が必要です – mplungjan