zoukankan      html  css  js  c++  java
  • js 字符串全部替换

    JS:

    String.prototype.replaceAll=function(reallyDo, replaceWith) {
        return this.replace(new RegExp(reallyDo, "g" ), replaceWith);
    }

    使用方式:

    var str="addfgfdgfdgfdbvcmbadd,vm";

    alert(str.replaceAll("add","app"));

    弹出结果:appfgfdgfdgfdbvcmbapp,vm

    ---------------------------------------------------------------

    网上有直接全部替换的方法:

    var str='大家都是男人吗,难道不是吗?';
    str = str.replace(/吗/g, '嘛');
    alert(str);

    表达式 /吗/g 这里的g,这个g表示全局,不给这个配置项是不会全部替换的。

    只是这个“吗”,不能替换为变量,所以用正则参数带入返回。

  • 相关阅读:
    MySQL大数据分页调优实践
    CentOS 搭建L2TP
    CentOS 搭建SS5
    CentOS 搭建PPTP
    CentOS 防火墙 firewalld
    CentOS 初始化账号
    nginx升级与回退
    Python
    python
    linux
  • 原文地址:https://www.cnblogs.com/chenly-index/p/3927212.html
Copyright © 2011-2022 走看看