JavaScript 中的 replace() 方法用於在字串中尋找並取代指定的字元或子字串,用法為:string.replace(replaceWhat, replaceWith[, count])。它可以進行字串替換、正規表示式替換、部分替換、查找和替換函數以及全域替換等操作。
JavaScript 中 replace() 的用法
什麼是 replace()?
replace() 方法用於在字串中尋找並取代指定的字元或子字串。
用法
<code class="javascript">string.replace(replaceWhat, replaceWith[, count]);</code>
參數
傳回值
傳回替換後的字串,不修改原始字串。
詳細用法
#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"</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>
以上是js中replace的用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!