返回列表 发帖
@echo off
set str=今日明月在
echo %str:~0,2%
echo %str:~2,2%
echo %str:~-1%
rem echo %str:今日明月在=明月今日在%
set temp=%str:今日明月在=明月今日在%
echo %temp%
pause

TOP

返回列表