
- 帖子
- 30
- 积分
- 41
- 技术
- 0
- 捐助
- 0
- 注册时间
- 2023-4-18
|
@echo off
setlocal enabledelayedexpansion
set /a total=0
:: 4字组合的个数
set /a word4num=0
for /f "delims=" %%i in (test.txt) do (
set line=%%i
for %%j in (!line!) do (
set word4=%%j
set desmap!word4num!=!word4!
set /a word4num+=1
set /a total+=4
for /l %%n in (0 1 3) do (
set temp=!word4:~%%n,1!
:: 打印重复的字
if defined dic[!temp!] echo !temp!重复
set dic[!temp!]=!temp!
)
)
)
:: 总的字数
echo 总字数:!total!
echo 点击继续,逆序打印
pause>nul
for /l %%m in (!word4num!, -1, 0) do (
set descnum=%%m
:: 逆序打印
call echo %%desmap!descnum!%%
) |
|