特定の文字列が別の文字列に出現する回数をどのようにカウントできますか?たとえば、これは私がJavascriptでやろうとしていることです:
var temp = "This is a string.";
alert(temp.count("is")); //should output '2'
特定の文字列が別の文字列に出現する回数をどのようにカウントできますか?たとえば、これは私がJavascriptでやろうとしていることです:
var temp = "This is a string.";
alert(temp.count("is")); //should output '2'
回答:
g
(のために短い正規表現で世界的には)ちょうど最初の発生を見つけるのではなく、文字列全体を検索するために指定します。これはis
2回一致します。
var temp = "This is a string.";
var count = (temp.match(/is/g) || []).length;
console.log(count);
そして、一致するものがなければ、次を返します0
:
var temp = "Hello World!";
var count = (temp.match(/is/g) || []).length;
console.log(count);
count = (str.match(/is/g) || []).length
あなたが一致していない場合、私は処理に行きました。
RegExp
コンストラクターを使用して正規表現を動的に作成し、探している文字列を渡すことができますが、その場合はすべてのメタ文字をエスケープする必要があります。そのシナリオでは、純粋な文字列アプローチが推奨されます。
/** Function that count occurrences of a substring in a string;
* @param {String} string The string
* @param {String} subString The sub string to search for
* @param {Boolean} [allowOverlapping] Optional. (Default:false)
*
* @author Vitim.us https://gist.github.com/victornpb/7736865
* @see Unit Test https://jsfiddle.net/Victornpb/5axuh96u/
* @see http://stackoverflow.com/questions/4009756/how-to-count-string-occurrence-in-string/7924240#7924240
*/
function occurrences(string, subString, allowOverlapping) {
string += "";
subString += "";
if (subString.length <= 0) return (string.length + 1);
var n = 0,
pos = 0,
step = allowOverlapping ? 1 : subString.length;
while (true) {
pos = string.indexOf(subString, pos);
if (pos >= 0) {
++n;
pos += step;
} else break;
}
return n;
}
occurrences("foofoofoo", "bar"); //0
occurrences("foofoofoo", "foo"); //3
occurrences("foofoofoo", "foofoo"); //1
occurrences("foofoofoo", "foofoo", true); //2
一致:
foofoofoo
1 `----´
2 `----´
要旨私はベンチマークテストを行いました。私の関数は、gumboが投稿した正規表現一致関数よりも10倍以上高速です。私のテストでは、文字列の長さは25文字です。文字「o」が2回出現します。サファリで1 000 000回実行しました。
Safari 5.1
ベンチマーク>合計実行時間:5617ミリ秒(正規表現)
ベンチマーク>合計実行時間:881 ms(私の機能は6.4倍高速)
Firefox 4
ベンチマーク>合計実行時間:8547 ms(Rexexp)
ベンチマーク>合計実行時間:634 ms(私の機能は13.5倍高速)
編集:私が行った変更
キャッシュされた部分文字列の長さ
文字列に型キャストを追加しました。
オプションの「allowOverlapping」パラメーターを追加
""空の部分文字列の大文字小文字の正しい出力を修正しました。
substring.length
、ほぼすべてのループをチェックしているので、それを外部でキャッシュすることを検討する必要がありますwhile
occurrences(11,1) //2
でも機能します。(型をチェックしてtoString()を呼び出すよりも、この方法の方が高速です)
function countInstances(string, word) {
return string.split(word).length - 1;
}
countInstances("isisisisisis", "is") === 0
。例:
あなたはこれを試すことができます:
var theString = "This is a string.";
console.log(theString.split("is").length - 1);
theString.split(myvar).length - 1
これは単純な正規表現ではできません
私の解決策:
var temp = "This is a string.";
function countOcurrences(str, value) {
var regExp = new RegExp(value, "gi");
return (str.match(regExp) || []).length;
}
console.log(countOcurrences(temp, 'is'));
countOcurrences('Hello...','.')==8
を使用match
して、このような関数を定義できます。
String.prototype.count = function(search) {
var m = this.match(new RegExp(search.toString().replace(/(?=[.\\+*?[^\]$(){}\|])/g, "\\"), "g"));
return m ? m.length:0;
}
return m ? m.length:-1;
。
非正規表現バージョン:
var string = 'This is a string',
searchFor = 'is',
count = 0,
pos = string.indexOf(searchFor);
while (pos > -1) {
++count;
pos = string.indexOf(searchFor, ++pos);
}
console.log(count); // 2
is
出現を要求する
ただコードをゴルフするRebecca Chernoffのソリューション :-)
alert(("This is a string.".match(/is/g) || []).length);
String.prototype.Count = function (find) {
return this.split(find).length - 1;
}
console.log("This is a string.".Count("is"));
これは2を返します。
こちらが最速の機能です!
なぜそれが速いのですか?
すべての操作は可能な限り結合され、複数の操作による速度低下を回避します
String.prototype.timesCharExist=function(c){var t=0,l=0,c=(c+'')[0];while(l=this.indexOf(c,l)+1)++t;return t};
これは、低速で読みやすいバージョンです。
String.prototype.timesCharExist = function ( chr ) {
var total = 0, last_location = 0, single_char = ( chr + '' )[0];
while( last_location = this.indexOf( single_char, last_location ) + 1 )
{
total = total + 1;
}
return total;
};
これは、カウンター、長い変数名、1つの変数の誤用のために遅くなります。
これを使用するには、次のようにします。
'The char "a" only shows up twice'.timesCharExist('a');
編集:(2013/12/16)
Opera 12.16以前では使用しないでください!正規表現ソリューションよりも約2.5倍多くかかります!
Chromeでは、このソリューションは1,000,000文字で14ミリ秒から20ミリ秒かかります。
同じ量の正規表現ソリューションは11-14msかかります。
関数の使用(外部で String.prototype
)と、約10〜13ミリ秒かかります。
使用されるコードは次のとおりです。
String.prototype.timesCharExist=function(c){var t=0,l=0,c=(c+'')[0];while(l=this.indexOf(c,l)+1)++t;return t};
var x=Array(100001).join('1234567890');
console.time('proto');x.timesCharExist('1');console.timeEnd('proto');
console.time('regex');x.match(/1/g).length;console.timeEnd('regex');
var timesCharExist=function(x,c){var t=0,l=0,c=(c+'')[0];while(l=x.indexOf(c,l)+1)++t;return t;};
console.time('func');timesCharExist(x,'1');console.timeEnd('func');
すべてのソリューションの結果は100,000になるはずです。
注:この関数で複数の文字をカウントする場合は、どこをc=(c+'')[0]
に変更するかc=c+''
正規表現の目的はとはかなり異なると思いますindexOf
。
indexOf
正規表現であなたのようなワイルドカードを使用できますが、単純に特定の文字列ののoccuranceを見つける[A-Z]
ことがありますを意味しているいずれかを実際の文字を記載せずに単語の資本文字を。
例:
var index = "This is a string".indexOf("is");
console.log(index);
var length = "This is a string".match(/[a-z]/g).length;
// where [a-z] is a regex wildcard expression thats why its slower
console.log(length);
とても古いですが、今日はこのようなことをする必要があり、後でSOをチェックすることだけを考えました。私にとってはかなり速く動作します。
String.prototype.count = function(substr,start,overlap) {
overlap = overlap || false;
start = start || 0;
var count = 0,
offset = overlap ? 1 : substr.length;
while((start = this.indexOf(substr, start) + offset) !== (offset - 1))
++count;
return count;
};
var myString = "This is a string.";
var foundAtPosition = 0;
var Count = 0;
while (foundAtPosition != -1)
{
foundAtPosition = myString.indexOf("is",foundAtPosition);
if (foundAtPosition != -1)
{
Count++;
foundAtPosition++;
}
}
document.write("There are " + Count + " occurrences of the word IS");
ステップバイステップの説明については、文字列に出現する部分文字列のカウントを参照してください。
上記の@ Vittim.usの回答に基づいて構築。私は彼のメソッドが提供するコントロールが好きで、拡張が簡単ですが、句読点をサポートして、大文字と小文字を区別せず、単語全体に一致を制限する必要がありました。(例えば、「入浴」は「入浴」にありますが、「入浴」にはありません)
句読点の正規表現の由来:https : //stackoverflow.com/a/25575009/497745(regexを使用してJavaScriptの文字列からすべての句読点を削除するにはどうすればよいですか?)
function keywordOccurrences(string, subString, allowOverlapping, caseInsensitive, wholeWord)
{
string += "";
subString += "";
if (subString.length <= 0) return (string.length + 1); //deal with empty strings
if(caseInsensitive)
{
string = string.toLowerCase();
subString = subString.toLowerCase();
}
var n = 0,
pos = 0,
step = allowOverlapping ? 1 : subString.length,
stringLength = string.length,
subStringLength = subString.length;
while (true)
{
pos = string.indexOf(subString, pos);
if (pos >= 0)
{
var matchPos = pos;
pos += step; //slide forward the position pointer no matter what
if(wholeWord) //only whole word matches are desired
{
if(matchPos > 0) //if the string is not at the very beginning we need to check if the previous character is whitespace
{
if(!/[\s\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&\(\)*+,\-.\/:;<=>?@\[\]^_`{|}~]/.test(string[matchPos - 1])) //ignore punctuation
{
continue; //then this is not a match
}
}
var matchEnd = matchPos + subStringLength;
if(matchEnd < stringLength - 1)
{
if (!/[\s\u2000-\u206F\u2E00-\u2E7F\\'!"#$%&\(\)*+,\-.\/:;<=>?@\[\]^_`{|}~]/.test(string[matchEnd])) //ignore punctuation
{
continue; //then this is not a match
}
}
}
++n;
} else break;
}
return n;
}
バグや改善点を見つけたら、この回答を自由に変更してリファクタリングしてください。
将来的にこのスレッドを見つけた人のために、あなたはそれを一般あれば、それはのような正規表現の演算子に窒息されますので、受け入れられた答えは常に、正しい値を返さないことに注意してください$
と.
。これはより良いバージョンで、どんな針にも対応できます:
function occurrences (haystack, needle) {
var _needle = needle
.replace(/\[/g, '\\[')
.replace(/\]/g, '\\]')
return (
haystack.match(new RegExp('[' + _needle + ']', 'g')) || []
).length
}
正規表現なしのシンプルなバージョン:
var temp = "This is a string.";
var count = (temp.split('is').length - 1);
alert(count);
これを試して
let allData = "This is a string.";
let searchString = 'is';
let regularExp = new RegExp(searchString, 'g');
let occurArray = allData.match(regularExp);
let count = (occurArray || []).length;
alert(count);
フィドルリンク:https : //jsfiddle.net/rajaramtt/gn0dtsjc/1/
今これは私が遭遇した非常に古いスレッドですが、多くの人が答えをプッシュしたので、この簡単なコードで誰かを助けることを期待してここにあります。
var search_value = "This is a dummy sentence!";
var letter = 'a'; /*Can take any letter, have put in a var if anyone wants to use this variable dynamically*/
letter = letter && "string" === typeof letter ? letter : "";
var count;
for (var i = count = 0; i < search_value.length; count += (search_value[i++] == letter));
console.log(count);
それが最速の解決策かどうかはわかりませんが、私は単純さと正規表現を使用しないためにそれを好みました(私はそれらを使用したくないだけです!)
この関数は、テキスト内の単語の出現回数を返します。
toLowerCaseを使用して、単語とテキストの形式(大文字、大文字など)に関係なく出現回数を計算することに注意してください。
wordCount(text, word) {
if (!text || !word) {
return 0;
}
text = text.toLowerCase();
word = word.toLowerCase();
return ( text.split( word ).length - 1 );
}
Leandro Batistaへの回答:正規表現の問題です。
"use strict";
var dataFromDB = "testal";
$('input[name="tbInput"]').on("change",function(){
var charToTest = $(this).val();
var howManyChars = charToTest.length;
var nrMatches = 0;
if(howManyChars !== 0){
charToTest = charToTest.charAt(0);
var regexp = new RegExp(charToTest,'gi');
var arrMatches = dataFromDB.match(regexp);
nrMatches = arrMatches ? arrMatches.length : 0;
}
$('#result').html(nrMatches.toString());
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="main">
What do you wanna count <input type="text" name="tbInput" value=""><br />
Number of occurences = <span id="result">0</span>
</div>
var countInstances = function(body, target) {
var globalcounter = 0;
var concatstring = '';
for(var i=0,j=target.length;i<body.length;i++){
concatstring = body.substring(i-1,j);
if(concatstring === target){
globalcounter += 1;
concatstring = '';
}
}
return globalcounter;
};
console.log( countInstances('abcabc', 'abc') ); // ==> 2
console.log( countInstances('ababa', 'aba') ); // ==> 2
console.log( countInstances('aaabbb', 'ab') ); // ==> 1
少し遅れますが、次の文字列があるとします。
var temp = "This is a string.";
まず、一致させたいものを分割します。これにより、文字列の配列が返されます。
var array = temp.split("is");
次に、splitはデフォルトでサイズ1の配列になり、その結果、オカレンスが見つかるたびにサイズが増加するため、その長さを取得して1を減算します。
var occurrenceCount = array.length - 1;
alert(occurrenceCount); //should output '2'
次のように、これらすべてを1行で行うこともできます。
alert("This is a string.".split("is").length - 1); //should output '2'
それが役に立てば幸い:D
この解決策は.replace()
、RegExを最初のパラメーターとして受け入れ、関数をクロージャーとして使用してカウンターをインクリメントできるメソッドに基づいています ...
/**
* Return the frequency of a substring in a string
* @param {string} string - The string.
* @param {string} string - The substring to count.
* @returns {number} number - The frequency.
*
* @author Drozerah https://gist.github.com/Drozerah/2b8e08d28413d66c3e63d7fce80994ce
* @see https://stackoverflow.com/a/55670859/9370788
*/
const subStringCounter = (string, subString) => {
let count = 0
string.replace(new RegExp(subString, 'gi'), () => count++)
return count
}
使用法
subStringCounter("foofoofoo", "bar"); //0
subStringCounter("foofoofoo", "foo"); //3
let str = 'As sly as a fox, as strong as an ox';
let target = 'as'; // let's look for it
let pos = 0;
while (true) {
let foundPos = str.indexOf(target, pos);
if (foundPos == -1) break;
alert( `Found at ${foundPos}` );
pos = foundPos + 1; // continue the search from the next position
}
同じアルゴリズムを短くレイアウトできます:
let str = "As sly as a fox, as strong as an ox";
let target = "as";
let pos = -1;
while ((pos = str.indexOf(target, pos + 1)) != -1) {
alert( pos );
}
substr_count
PHPからJavaScriptに翻訳
function substr_count (haystack, needle, offset, length) {
// eslint-disable-line camelcase
// discuss at: https://locutus.io/php/substr_count/
// original by: Kevin van Zonneveld (https://kvz.io)
// bugfixed by: Onno Marsman (https://twitter.com/onnomarsman)
// improved by: Brett Zamir (https://brett-zamir.me)
// improved by: Thomas
// example 1: substr_count('Kevin van Zonneveld', 'e')
// returns 1: 3
// example 2: substr_count('Kevin van Zonneveld', 'K', 1)
// returns 2: 0
// example 3: substr_count('Kevin van Zonneveld', 'Z', 0, 10)
// returns 3: false
var cnt = 0
haystack += ''
needle += ''
if (isNaN(offset)) {
offset = 0
}
if (isNaN(length)) {
length = 0
}
if (needle.length === 0) {
return false
}
offset--
while ((offset = haystack.indexOf(needle, offset + 1)) !== -1) {
if (length > 0 && (offset + needle.length) > length) {
return false
}
cnt++
}
return cnt
}
LocutusによるPhpのsubstr_count関数の翻訳を確認してください。
これを試して:
function countString(str, search){
var count=0;
var index=str.indexOf(search);
while(index!=-1){
count++;
index=str.indexOf(search,index+1);
}
return count;
}