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
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
JavaScript
PHP