-1
我想用## - ##(#:=任何數字符號)替換####。RegExp替換不會替換模式
if (/^([0-9]{2})([0-9]{2})$/.test(str)) {
str = str.replace("/^([0-9]{2})([0-9]{2})$/", "$1-$2");
console.log(str);
}
在控制檯中我得到####(不是## - ##)。
我在做什麼錯了?