标题: [日期时间] 请教!批处理日期格式转换 [打印本页]
作者: xxrs 时间: 2017-3-16 16:54 标题: 请教!批处理日期格式转换
年月日转换成日月年带斜杠!
20170316转换成 3/16/2017
作者: taofan712 时间: 2017-3-16 23:07
- @echo off
- set/p t=输入需要转换的日期:
- set c=%t:~4,2%/%t:~6,2%/%t:~,4%
- if %c:~,1% equ 0 set c=%c:~1%
- echo;%c%
- pause
复制代码
作者: pcl_test 时间: 2017-3-17 22:24
看顶楼效果是年月日转为月日年而不是日月年
win7及以上系统运行- powershell "'20170316' -replace '(\d{4})0?(1[0-2]|[1-9])0?([1-3]\d|[1-9])','$2/$3/$1'"&pause
复制代码
作者: xxrs 时间: 2017-3-20 21:40
回复 3# pcl_test
多谢版主 热心帮助 !
作者: WHY 时间: 2017-3-20 23:39
- set "dt=20170320"
- set /a M=1%dt:~4,2% %% 100, d=1%dt:~6,2% %% 100
- echo;%M%/%d%/%dt:~0,4%
复制代码
欢迎光临 批处理之家 (http://bathome.net./) |
Powered by Discuz! 7.2 |