javascript 中的 replace() 方法用于在字符串中查找并替換指定的字符或子字符串,用法為:string.replace(replacewhat, replacewith[, count])。它可以進行字符串替換、正則表達式替換、部分替換、查找和替換函數以及全局替換等操作。
JavaScript 中 replace() 的用法
什么是 replace()?
replace() 方法用于在字符串中查找并替換指定的字符或子字符串。
用法
<code class="javascript">string.replace(replaceWhat, replaceWith[, count]);</code>
登錄后復制
參數
replaceWhat:要查找的字符或子字符串。
replaceWith:要替換的字符或子字符串。
count(可選):要進行替換的次數(默認為全部)。
返回值
返回替換后的字符串,不修改原字符串。
詳細用法
1. 字符串替換
將指定字符替換為另一個字符:
<code class="javascript">let str = "Hello World"; str.replace("World", "Universe"); // "Hello Universe"</code>
登錄后復制
2. 正則表達式替換
使用正則表達式查找和替換子字符串:
<code class="javascript">let str = "This is a test sentence."; str.replace(/\s/g, "-"); // "This-is-a-test-sentence."</code>
登錄后復制
3. 部分替換
限制要替換的次數:
<code class="javascript">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."</code>
登錄后復制
4. 查找和替換函數
使用回調函數指定替換內容:
<code class="javascript">let str = "John Doe"; str.replace(/(?<name>\w+) (?<surname>\w+)/, match => `${match.groups.surname}, ${match.groups.name}`); // "Doe, John"</surname></name></code>
登錄后復制
5. 全局替換
g
標志可全局匹配和替換所有符合條件的子字符串:
<code class="javascript">let str = "The lazy dog jumped over the lazy fox."; str.replace(/lazy/g, "quick"); // "The quick dog jumped over the quick fox."</code>
登錄后復制