请问各位小哥哥怎么分割日期时间

这个是后台返回的日期时间createTime: "20210915163538"
想要转换成 2009-12-30 13:28:29 这样的格式
image.png

阅读 2.4k
3 个回答

正则替换

"20210915163538".replace(/(\d{4})(\d{2})(\d{2})(\d{2})(\d{2})(\d{2})/,'$1-$2-$3 $4:$5:$6')
'2021-09-15 16:35:38'
  const numbertime = '20210915163538'
  const year = numbertime.slice(0,4)
  const month = numbertime.slice(4,6)
  const day = numbertime.slice(6,8)
  console.log(year,month,day);
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题