replace函數可以用另一個字符替換字串中的指定字符,此外,透過使用正則表達式的替換規則,也可以替換各種模式,接下來的這篇文章就來介紹關於如何使用如何使用JavaScript的replace替換字串的replace替換字串中replace替換字串的具體方法。
replace函數的用法
基本語法
# #
String.replace(模式, 替换的文字[, flag])
replace進行取代處理的範例
<!DOCTYPE html> <html> <head> <meta charset = "utf-8"> <title>如何使用如何使用JavaScript的replace替換字串的replace替換字串</title> </head> <body> <script> var str1 = "今天是一个晴天!"; var newstr1 = str1.replace("晴天", "雨天"); console.log(str1); console.log(newstr1); var str2 = "我的名字叫张三,<br>今年10岁了。"; var newstr2 = str2.replace(/<br>/g, "\n"); console.log(str2); console.log(newstr2); </script> </body> </html>
var str1 = "今天是一个晴天!"; var newstr1 = str1.replace("晴天", "雨天"); console.log(str1); console.log(newstr1);
var str2 = "我的名字叫张三,<br>今年10岁了。"; var newstr2 = str2.replace(/<br>/g, "\n"); console.log(str2); console.log(newstr2);
以上是如何使用JavaScript的replace替換字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!