書いたコードはこんな感じ。
function countMatchCharacters(string, passCode) {
//
// @brief 文字列を比較し同じ文字数を返す
// @note 大文字小文字を区別しない
// @param
// @date Jul 05, 2022
//..........................................................................
let num = 0;
for(let i=0; i<passCode.length; i++) {
let regExp = new RegExp(passCode[i], 'i');
if(regExp.test(string)) {
num++;
}
}
console.log(num);
Logging('T', 'countMatchCharacters() Exit' , 'Match count = ' + num);
return num;
}
--
いちじ
No comments:
Post a Comment