处理了一下开头有空格的行及空白行
测试文本test.txt如下:- asdfas dflasdf
- ;asdlfkjlk
- //alsdkflk
- ;hfajksdfhk
- //kljhadsf
-
- poipoi //asdf
- asdfasdf; //asdf
- klhjasdf; asdf
复制代码 代码:- @echo off & setlocal enabledelayedexpansion
- for /f "tokens=*" %%a in (test.txt) do ( if not "%%a"=="" echo %%a >> _tmp.txt )
- for /f "usebackq delims=" %%i in (`findstr /V "^; ^//" _tmp.txt`) do (
- set str=%%i
- set str=!str://=@!
- for /f "delims=@" %%j in ("!str!") do echo %%j
- )
- del _tmp.txt
- pause>nul
复制代码
|