js替换字符串中所有指定的字符(实现代码)


Posted in Javascript onAugust 17, 2016

第一次发现JavaScript中replace() 方法如果直接用str.replace("-","!") 只会替换第一个匹配的字符.
而str.replace(/\-/g,"!")则可以全部替换掉匹配的字符(g为全局标志)。

replace()

The replace() method returns the string that results when you replace text matching its first argument
(a regular expression) with the text of the second argument (a string).
If the g (global) flag is not set in the regular expression declaration, this method replaces only the first
occurrence of the pattern. For example,

var  s = "Hello. Regexps are fun." ;s = s.replace(/\./, "!" ); // replace first period with an exclamation pointalert(s);

produces the string “Hello! Regexps are fun.” Including the g flag will cause the interpreter to
perform a global replace, finding and replacing every matching substring. For example,

var  s = "Hello. Regexps are fun." ;s = s.replace(/\./g, "!" ); // replace all periods with exclamation pointsalert(s);

yields this result: “Hello! Regexps are fun!”

所以可以用以下几种方式:

string.replace(/reallyDo/g, replaceWith);

string.replace(new RegExp(reallyDo, 'g'), replaceWith);

string:字符串表达式包含要替代的子字符串。
reallyDo:被搜索的子字符串。

replaceWith:用于替换的子字符串。

Js代码

<script type="text/javascript"> 
String.prototype.replaceAll = function(reallyDo, replaceWith, ignoreCase) { 
  if (!RegExp.prototype.isPrototypeOf(reallyDo)) { 
    return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith); 
  } else { 
    return this.replace(reallyDo, replaceWith); 
  } 
} 
</script>

以上这篇js替换字符串中所有指定的字符(实现代码)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持三水点靠木。

Javascript 相关文章推荐
利用Dojo和JSON建立无限级AJAX动态加载的功能模块树
Mar 24 Javascript
Javascript实现的鼠标经过时播放声音
May 18 Javascript
基于javascript实现判断移动终端浏览器版本信息
Dec 09 Javascript
JavaScript声明变量名的语法规则
Jul 10 Javascript
JS实现的RGB网页颜色在线取色器完整实例
Dec 21 Javascript
Bootstrap源码解读标签、徽章、缩略图和警示框(8)
Dec 26 Javascript
BootStrap Fileinput初始化时的一些参数
Dec 30 Javascript
Angular.js中控制器之间的传值详解
Apr 24 Javascript
node下使用UglifyJS压缩合并JS文件的方法
Mar 07 Javascript
javascript自定义右键菜单插件
Dec 16 Javascript
uni-app 支持多端第三方地图定位的方法
Jan 03 Javascript
如何基于viewport vm适配移动端页面
Nov 13 Javascript
在javascript中使用com组件的简单实现方法
Aug 17 #Javascript
模拟javascript中的sort排序(简单实例)
Aug 17 #Javascript
js replace(a,b)之替换字符串中所有指定字符的方法
Aug 17 #Javascript
BOM系列第一篇之定时器setTimeout和setInterval
Aug 17 #Javascript
BOM系列第二篇之定时器requestAnimationFrame
Aug 17 #Javascript
AngularJS 视图详解及示例代码
Aug 17 #Javascript
BOM系列第三篇之定时器应用(时钟、倒计时、秒表和闹钟)
Aug 17 #Javascript
You might like
PHP+MYSQL的文章管理系统(二)
2006/10/09 PHP
php中使用ExcelFileParser处理excel获得数据(可作批量导入到数据库使用)
2010/08/21 PHP
PHP上传图片、删除图片简单实例
2016/11/12 PHP
基于Jquery的实现回车键Enter切换焦点
2010/09/14 Javascript
Javascript简单实现可拖动的div
2013/10/22 Javascript
javascript中处理时间戳为日期格式的方法
2014/01/02 Javascript
多引号嵌套的变量命名的问题
2014/05/09 Javascript
JSON格式化输出
2014/11/10 Javascript
jQuery实现多按钮单击变色
2014/11/27 Javascript
数据分析软件之FineReport教程:[5]参数界面JS(全)
2015/08/13 Javascript
实现JavaScript的组成----BOM和DOM详解
2016/05/18 Javascript
AngularJS全局scope与Isolate scope通信用法示例
2016/11/22 Javascript
JS+HTML5 FileReader对象用法示例
2017/04/07 Javascript
Vue2递归组件实现树形菜单
2017/04/10 Javascript
Makefile/cmake/node-gyp中区分判断不同平台的方法
2018/12/18 Javascript
微信小程序实现传递多个参数与事件处理
2019/08/12 Javascript
vue模块移动组件的实现示例
2020/05/20 Javascript
vue-router定义元信息meta操作
2020/12/07 Vue.js
Python 返回汉字的汉语拼音
2009/02/27 Python
基于Python pip用国内镜像下载的方法
2018/06/12 Python
深入flask之异步非堵塞实现代码示例
2018/07/31 Python
Python Selenium 之关闭窗口close与quit的方法
2019/02/13 Python
Python3获取电脑IP、主机名、Mac地址的方法示例
2019/04/11 Python
python [:3] 实现提取数组中的数
2019/11/27 Python
基于TensorFlow中自定义梯度的2种方式
2020/02/04 Python
Python中Selenium库使用教程详解
2020/07/23 Python
matplotlib 多个图像共用一个colorbar的实现示例
2020/09/10 Python
应届毕业生的自我鉴定
2013/11/13 职场文书
大三学生做职业规划:给未来找个方向
2014/02/24 职场文书
献爱心活动总结
2014/05/07 职场文书
酒店服务员岗位职责
2015/02/09 职场文书
2015年七一建党节活动方案
2015/05/05 职场文书
贫困证明书范文
2015/06/16 职场文书
结婚司仪主持词
2015/06/29 职场文书
话题作文之财富(600字)
2019/12/03 职场文书
经典人生语录分享:不畏将来,不念过去,笑对当下
2019/12/12 职场文书