Javascript
 Computer >> コンピューター >  >> プログラミング >> Javascript

別の文字列の出現をカウントする-JavaScript


2つの文字列を受け取り、最初の文字列が2番目の文字列に出現する回数のカウントを返すJavaScript関数を作成する必要があります

文字列が-

だとしましょう
const main = 'This is the is main is string';

上記の「メイン」文字列で以下の文字列の外観を見つける必要があります-

const sub = 'is';

この関数のコードを書いてみましょう-

const main = 'This is the is main is string';
const sub = 'is';
const countAppearances = (main, sub) => {
   const regex = new RegExp(sub, "g");
   let count = 0;
   main.replace(regex, (a, b) => {
      count++;
   });
   return count;
};
console.log(countAppearances(main, sub));

出力

以下はコンソールの出力です-

4

  1. JavaScript文字列をブール値に変換します

    JavaScriptで文字列をブール値に変換するためのコードは次のとおりです- 例 <!DOCTYPE html> <html> <head> <style>    body {       font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;    } </style> </head> <body> <h1>Converting strin

  2. JavaScriptで別の関数を返す関数

    以下は、関数がJavaScriptで別の関数を返すコードです- 例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Document</title> <style>   &