我正在处理一列注册时间,它的格式是:
月/日/年时:分钟
我需要将其更改为:
日/月/年小时:分钟
有什么想法吗?
发布于 2017-02-08 18:30:44
您可以使用format函数格式化您的注册时间
格式(RegistrationTime,"%d/%m/%Y:%H:%M")
https://stackoverflow.com/questions/42109817
相似问题