使用 JavaScript 在字符串中用破折号替换点
问题
我们需要编写一个JavaScript函数,该函数接受一个字符串并将其中所有出现的点(.)替换为破折号(-)。
输入
const str = 'this.is.an.example.string';
输出
const output = 'this-is-an-example-string';
字符串str中所有出现的点(.)都替换为破折号(-)
示例
以下是代码-
const str = 'this.is.an.example.string';
const replaceDots = (str = '') => {
let res = "";
const { length: len } = str;
for (let i = 0; i < len; i++) {
const el = str[i];
if(el === '.'){
res += '-';
}else{
res += el;
};
};
return res;
};
console.log(replaceDots(str));代码说明
我们遍历字符串str并检查当前元素是否是一个点,我们在res字符串中添加一个破折号,否则我们添加当前元素。
输出结果
this-is-an-example-string
热门推荐
10 复工老公送花祝福语简短
11 喜得孙子的祝福语简短
12 男孩衣服开箱祝福语简短
13 夏至问候客户祝福语简短
14 伴娘送亲祝福语简短精辟
15 朋友被录取祝福语简短
16 客户蛋糕生日祝福语简短
17 弟媳生日贺卡祝福语简短
18 新婚简短祝福语微信