J
Jean Pierre Daviau
HI everybody,
I would like to transform this: 2009/10/02 into that 02/10/2009
I would like to transform this: 2009/10/02 into that 02/10/2009
Jean Pierre Daviau said:HI everybody,
I would like to transform this: 2009/10/02 into that 02/10/2009
Jean Pierre Daviau said:Thanks ;-)
Pegasus said:Here you go:
@echo off
set d1=2009/10/02
for /F "tokens=1-3 delims=/" %%a in ('echo %d%') do set d2=%%c/%%b/%%a
echo %d1% %d2%
Pegasus said:Here you go:
@echo off
set d1=2009/10/02
for /F "tokens=1-3 delims=/" %%a in ('echo %d%') do set d2=%%c/%%b/%%a
echo %d1% %d2%