我想把字符串"date: %H:%M:%S:%MS"变成"date: 01:02:03:04". 也就是说,用正确的数字替换每个格式说明符。
const date = {
H: '01',
M: '02',
S: '03',
MS: '04',
}
const format = 'date: %H:%M:%S:%MS';
format.replace(/%[H,M,S,MS]/g, (f) => date[f]); // like this but it's not working
我怎样才能做到这一点 ?
米脂
繁星coding
相关分类