cnswb 当前离线
列兵
评分人数
pcl_test 当前离线
荣誉版主
powershell "(gc '文本.txt'|select-string '\bEnabling public\b' -context 5,1).Context.PreContext[0].split(':')[1]" pause复制代码
TOP
forfiles 当前离线
少将
terse 当前离线
中将
CrLf 当前离线
论坛巡查
@echo off for /f "tokens=1* delims=:" %%i in ('findstr /inc:"Enabling public" 测试.txt') do set /a N=%%i-5 for /f "tokens=1,2* delims=: " %%i in ('findstr /in ".*" "测试.txt"') do if %%i equ %N% set str=%%k&goto end :end echo %str% pause复制代码