replaceAll() 方法可在 JavaScript 字串中全域取代指定子字串,將所有符合子字串替換為給定的替換字串。使用方式為 string.replaceAll(searchValue, replaceValue),其中 searchValue 為要被取代的子字串,replaceValue 為要取代的新字串。
JavaScript 中的replaceAll() 用法
問題: JavaScript 中的replaceAll( ) 方法有什麼作用?
解答: replaceAll() 方法用於在字串中全域取代指定子字串。它將字串中的所有匹配子字串替換為給定的替換字串。
使用方式:
<code class="js">string.replaceAll(searchValue, replaceValue);</code>
#其中:
#string
是要進行替換的原始字串。 searchValue
是要被取代的子字串。 replaceValue
是要取代子字串的新字串。 範例:
<code class="js">const str = "JavaScript is a popular programming language."; // 将 "is" 替换为 "was" const newStr = str.replaceAll("is", "was"); console.log(newStr); // 输出:"JavaScript was a popular programming language."</code>
注意: replaceAll() 方法只取代完全符合的子字串。例如,在下列範例中,a
不會被替換,因為cat
不是字串中的完全符合子字串:
<code class="js">const str = "The cat is on the mat."; // 试图替换 "cat" 为 "dog" const newStr = str.replaceAll("cat", "dog"); console.log(newStr); // 输出:"The cat is on the mat."</code>
要取代不完全符合的子串,可以使用正規表示式和replace()
方法。
優點:
缺點:
以上是js中replaceall用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!