,可以使用以下方法实现:
下面是一个示例的JavaScript代码实现:
function addStringAlternate(str1, str2, add_str) {
let result = '';
const len1 = str1.length;
const len2 = str2.length;
const maxLen = Math.max(len1, len2);
for (let i = 0; i < maxLen; i++) {
if (i < len1) {
result += str1[i];
}
if (i < len2) {
result += str2[i];
}
result += add_str;
}
return result;
}
const str1 = 'Hello';
const str2 = 'World';
const add_str = '-';
const result = addStringAlternate(str1, str2, add_str);
console.log(result);
输出结果为:H-W-e-o-l-r-l-l-d-
在这个例子中,我们将字符串"Hello"和"World"交替添加"-",得到的结果是"H-W-e-o-l-r-l-l-d-"。
Elastic 实战工作坊
Elastic 实战工作坊
云+社区技术沙龙 [第30期]
云+社区技术沙龙[第26期]
云+社区技术沙龙[第27期]
云+社区技术沙龙[第29期]
云+社区技术沙龙[第22期]
云+社区开发者大会(北京站)
云+社区技术沙龙[第14期]
云+社区技术沙龙[第25期]
云+社区技术沙龙[第23期]
领取专属 10元无门槛券
手把手带您无忧上云