我有字符串,我需要将日期附加到具有文件扩展名和没有文件扩展名的字符串。
例如
水果
水果.doc
水果.docx
水果.苹果.docx
预期的结果是
水果_18-9-2020
Fruits_18-9-2020.doc
Fruits_18-9-2020.docx
水果.Apple_18-9-2020.docx
我试过这个
var str = 'Fruits.txt'; var txt = str.replace(/$/i,"_123");
但它给了我不正确的 Fruits.txt_123
我该怎么做呢?
弑天下
相关分类