本文研究几种用replace和正则表达式替换文本的方法
替换字符串中的文本是 JavaScript 中的常见任务。本文研究几种用 replace 和正则表达式替换文本的方法。
替换单个字串
通常 JavaScript 的 String replace() 函数只会替换它在字符串中找到的第一个匹配的子符:
<pre class="brush: html; toolbar: false">const myMessage = 'this is the sentence to end all sentences';
const newMessage = myMessage.replace('sentence', 'message');
console.log(newMessage); // this is the message to end all sentences</pre>
在这个例子中,仅替换了第一个 sentence 字串。
替换多个子串
如果希望 JavaScript 能够替换所有子串js中怎么替换字符串,必须通过 /g 运算符使用正则表达式:
<pre class="brush: html; toolbar: false">const myMessage = 'this is the sentence to end all sentences';
const newMessage = myMessage.replace(/sentence/g, 'message');
console.log(newMessage); // this is the message to end all messages</pre>
这一次次两个子串都会被替换。
除了使用内联 /g 之外js中怎么替换字符串,还可以使用 RegExp 对象的构造函数:
<pre class="brush: html; toolbar: false">const myMessage = 'this is the sentence to end all sentences';
const newMessage = myMessage.replace(new RegExp('sentence', 'g'), 'message');
console.log(newMessage); // this is the message to end all messages`
</pre>
替换特殊字符
要替换特殊字符,例如 -/\^$*+?.()|[]{}),需要使用反斜杠对其转义。
如果给定字符串 this\-is\-my\-url,要求把所有转义的减号( \-)替换为未转义的减号(-)。
可以用 replace() 做到:
<pre class="brush: html; toolbar: false">const myUrl = 'this-is-my-url';
const newUrl = myMessage.replace(/\-/g, '-');
console.log(newUrl); // this-is-my-url</pre>
或者用new Regexp():
<pre class="brush: html; toolbar: false">const myUrl = 'this-is-my-url';
const newUrl = myUrl.replace(new RegExp('-', 'g'), '-');
console.log(newUrl); // this-is-my-url</pre>
在第二个例子中不必用反斜杠来转义反斜杠。
你还知道哪些方法,请留言告诉大家。
发表评论
热门文章
Spimes主题专为博客、自媒体、资讯类的网站设计....
一款个人简历主题,可以简单搭建一下,具体也比较简单....
仿制主题,Typecho博客主题,昼夜双版设计,可....
用于作品展示、资源下载,行业垂直性网站、个人博客,....
54447454
10月31日
[已回复]
能重复在发一下吗,无法下载了