Javascript String.replace with dynamic regular expressions?

前端 未结 4 1370
清酒与你
清酒与你 2020-12-30 22:50

I have the following code, which works, but I need to inject some different stuff into the regular expression object (regex2) at runtime. However, text.replace

4条回答
  •  清酒与你
    2020-12-30 23:29

    var value = "2012-09-10";
    value = value.replace(/([0-9]{4})[\/-]([0-9]{2})[\/-]([0-9]{2})/,"$3/$2/$1");
    alert(value);
    

    this will show

    10/09/2012
    

提交回复
热议问题