批处理提取文本指定内容
发布网友
发布时间:2022-10-27 03:34
我来回答
共3个回答
热心网友
时间:2023-09-21 12:48
@echo off
del new_files.txt >nul 2>nul
for /f "tokens=*" %%i in ('dir /a-d /b *.txt') do (
for /f "skip=4 tokens=*" %%j in (%%i) do (
echo %%j))>>new_files.txt
start "" "new_files.txt"
在文本文档所在的目录运行,有空格的文本也可以处理了。
热心网友
时间:2023-09-21 12:48
@echo off
cd.>final.txt
for /f "tokens=8 delims=\" %%a in ('type 1.txt ^| find "GLOBALROOT"') do (
echo %%a
)
pause
热心网友
时间:2023-09-21 12:49
在文本编辑里,选修改
把需要修改的文字替换成新文字就可以了
热心网友
时间:2023-09-21 12:48
@echo off
del new_files.txt >nul 2>nul
for /f "tokens=*" %%i in ('dir /a-d /b *.txt') do (
for /f "skip=4 tokens=*" %%j in (%%i) do (
echo %%j))>>new_files.txt
start "" "new_files.txt"
在文本文档所在的目录运行,有空格的文本也可以处理了。
热心网友
时间:2023-09-21 12:48
@echo off
cd.>final.txt
for /f "tokens=8 delims=\" %%a in ('type 1.txt ^| find "GLOBALROOT"') do (
echo %%a
)
pause
热心网友
时间:2023-09-21 12:49
在文本编辑里,选修改
把需要修改的文字替换成新文字就可以了