JavaScript 匹配字符串中的通配符


我们被要求编写一个 JavaScript 函数,该函数接收两个字符串和一个数字 n。该函数匹配这两个字符串,即它检查这两个字符串是否包含相同的字符。如果两个字符串都包含相同的字符,无论其顺序如何,或者如果它们最多包含 n 个不同的字符,则该函数应返回 true,否则该函数应返回 false。

让我们为该函数编写代码 −

示例

const str1 = 'first string';
const str2 = 'second string';
const wildcardMatching = (first, second, num) => {
   let count = 0;
   for(let i = 0; i < first.length; i++){
      if(!second.includes(first[i])){
         count++;
      };
      if(count > num){
         return false;
      };
   };
   return true;
};
console.log(wildcardMatching(str1, str2, 2));
console.log(wildcardMatching(str1, str2, 1));
console.log(wildcardMatching(str1, str2, 0));

输出

控制台中的输出将是 −

true
true
false

更新于: 2020 年 8 月 31 日

2K+ 浏览量

开启你的 职业生涯

通过完成课程,获得认证

开始
广告
© . All rights reserved.