JavaScript :Replace用法

一次性的替換
str.replace("p","P");

一次取代多次
方法1:
str.replace(/p/g,"P");

方法2:
str.replace(new RegExp("p", "g"), "P")

Other