0

文中の単語の総数を数えようとしていました。Javascriptで次のコードを使用しました。

function countWords(){
    s = document.getElementById("inputString").value;
    s = s.replace(/(^\s*)|(\s*$)/gi,"");
    s = s.replace(/[ ]{2,}/gi," ");
    s = s.replace(/\n /,"\n");
    alert(s.split(' ').length);
}

したがって、次の入力を指定した場合、

"Hello world"  -> alerts 2       //fine
"Hello world<space>" -> alerts 3 // supposed to alert 2
"Hello world world" -> alerts 3  //fine

どこで間違ったのですか?

4

4 に答える 4

2

ここでは、必要なものがすべて見つかります。

http://jsfiddle.net/deepumohanp/jZeKu/

var regex = /\s+/gi;
var wordCount = value.trim().replace(regex, ' ').split(' ').length;
var totalChars = value.length;
var charCount = value.trim().length;
var charCountNoSpace = value.replace(regex, '').length;

$('#wordCount').html(wordCount);
$('#totalChars').html(totalChars);
$('#charCount').html(charCount);
$('#charCountNoSpace').html(charCountNoSpace);
于 2013-05-07T11:18:28.717 に答える
0

これを試してください:

var word = "str";
function countWords(word) {
    var s = word.length;
    if (s == "") {
        alert('count is 0')
    }
    else {
        s = s.replace (/\r\n?|\n/g, ' ')
            .replace (/ {2,}/g, ' ')
            .replace (/^ /, '')
            .replace (/ $/, '');
        var q = s.split (' ');
        alert ('total count is: ' + q.length);
    }
}
于 2013-05-07T11:18:36.587 に答える
0

' '文字列の末尾に区切り記号 (あなたの場合は ) がある場合、Split はイベントを分割[]し、リストの最後の項目を作成します。

于 2013-05-07T11:16:11.367 に答える