string.replace 的方法,範例:
var result = "hello".replace("he", "my");
結果
myllo
但這篇主要是講使用 Regular Expression 的 replace,再來個範例:
var result = "hello".replace(/e\w/, "abc");
結果
habclo
沒錯,只要將第一個參數改為 /xxx/ 就是 Regular Expression 的 pattern 囉。
接下來說明 replace 的多載方法