美文网首页
js中去掉字符串中的某个指定字符

js中去掉字符串中的某个指定字符

作者: easonR | 来源:发表于2018-11-07 09:02 被阅读0次

    整理2种方法

    1:使用replace函数替换

    var str="hello world!";
    str=str.replace("ll","");     // heoWorld!
    

    使用空串替换某一个字符串,可以实现去除指定字符串功能

    2:使用字符串分割函数在聚合

    var str="hello world!"
    var items=str.split("ll")      // ["he", "oWorld!"]
    

    会得到一个数组,items数组中包括利用o分割后的多个字符串(不包括o)

    var newStr=items.join("");       // heoWorld!
    

    会得到一个新字符串,将数组中的数组使用空串连接成一个新字符串

    相关文章

      网友评论

          本文标题:js中去掉字符串中的某个指定字符

          本文链接:https://www.haomeiwen.com/subject/culuxqtx.html