WHY 当前离线
上校
type a.txt|findstr /r /c:"^[0-9][0-9][0-9]0 " /c:"^[0-9][0-9][0-9][0-9]0 ">b.txt复制代码
TOP
wskwfkbdn (见与不见)当前离线
五级士官
172788876 当前离线
上等兵
pcl_test 当前离线
荣誉版主
CrLf 当前离线
论坛巡查
CommandBatCmd 当前离线
二级士官
@echo off&setlocal EnableDelayedExpansion for /f "tokens=1,2*" %%I in (a.txt) do Set/A A=%%I%%10&if "!A!"=="0" echo,%%I %%J pause复制代码