Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将字符串中日期的格式从mm/dd/yyyy更改为mm-dd-yyyy。
mm/dd/yyyy
mm-dd-yyyy
我尝试使用以下方法,但它不起作用
str.replace(///g,"-");
两个问题:
/
利用
str = str.replace(/\//g, "-")
由于/分隔正则表达式,如果你想在一个字符中使用一个/字符作为数据,你必须对它进行转义:
/\//g
有用。
'12/5/13'.replace(/\//g, '-');