查找两个字符串之间的共享元素-JavaScript
我们需要编写一个JavaScript函数,该函数接受两个可能包含/可能不包含某些常见元素的字符串。如果不存在公共元素,则该函数应返回一个空字符串,否则将包含两个字符串之间的所有公共元素的字符串。
以下是我们的两个字符串-
const str1 = 'Hey There!!, how are you'; const str2 = 'Can this be a special string';
示例
以下是代码-
const str1 = 'Hey There!!, how are you';
const str2 = 'Can this be a special string';
const commonString = (str1, str2) => {
let res = '';
for(let i = 0; i < str1.length; i++){
if(!str2.includes(str1[i])){
continue;
};
res += str1[i];
};
return res;
};
console.log(commonString(str1, str2));输出结果
以下是控制台中的输出-
e here h are
热门推荐
10 送心的祝福语简短
11 完成预算祝福语简短精辟
12 送姐姐的话祝福语简短
13 简短元旦祝福语古言
14 答谢生子祝福语简短独特
15 毕业教师花语祝福语简短
16 祝福语短句简短好听霸气
17 夏天客户祝福语大全 简短
18 给孩子开学祝福语简短