题解 | #替换空格#【js实现】

替换空格

https://www.nowcoder.com/practice/0e26e5551f2b489b9f58bc83aa4b6c68

1. 先将字符串的每个元素保存到数组中,然后再将数组利用join函数转换为字符串
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param s string字符串 
 * @return string字符串
 */
function replaceSpace( s ) {
    // write code here
    const n = s.length
    let res = []
    for(let i = 0; i < n; i++) {
        if(s[i] === ' ') {
            res.push('%20')
        } else {
            res.push(s[i])
        }
    }
    return res.join('')
}
module.exports = {
    replaceSpace : replaceSpace
};
2. 或者将第一种方法的数组改成字符串,利用字符串拼接实现
/**
 * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
 *
 * 
 * @param s string字符串 
 * @return string字符串
 */
function replaceSpace( s ) {
    // write code here
    const n = s.length
    let res = ''
    for(let i = 0; i < n; i++) {
        if(s[i] === ' ') {
            res += '%20'
        } else {
            res += s[i]
        }
    }
    return res
}
module.exports = {
    replaceSpace : replaceSpace
};




全部评论

相关推荐

offer多多的六边形战士很无语:看了你的博客,感觉挺不错的,可以把你的访问量和粉丝数在简历里提一下,闪光点(仅个人意见)
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务