js中replace的用法
文章标签
js
javascript 中的 replace() 方法用于在字符串中查找并替换指定的字符或子字符串,用法为:string.replace(replacewhat, replacewith[, count])。它可以进行字符串替换、正则表达式替换、部分替换、查找和替换函数以及全局替换等操作。
JavaScript 中 replace() 的用法
什么是 replace()?
replace() 方法用于在字符串中查找并替换指定的字符或子字符串。
用法
string.replace(replaceWhat, replaceWith[, count]);
参数
返回值
返回替换后的字符串,不修改原字符串。
详细用法
1. 字符串替换
将指定字符替换为另一个字符:
let str = "Hello World";str.replace("World", "Universe"); // "Hello Universe"
2. 正则表达式替换
使用正则表达式查找和替换子字符串:
let str = "This is a test sentence.";str.replace(/\s/g, "-"); // "This-is-a-test-sentence."
3. 部分替换
限制要替换的次数:
let str = "The quick brown fox jumps over the lazy dog.";str.replace("the", "a", 1); // "The quick brown fox jumps over a lazy dog."
4. 查找和替换函数
使用回调函数指定替换内容:
let str = "John Doe";str.replace(/(?<name>\w+) (?<surname>\w+)/, match => `${match.groups.surname}, ${match.groups.name}`); // "Doe, John"</surname></name>
5. 全局替换
g 标志可全局匹配和替换所有符合条件的子字符串:
let str = "The lazy dog jumped over the lazy fox.";str.replace(/lazy/g, "quick"); // "The quick dog jumped over the quick fox."