如何用bat抓取out文件中指定的数值并保存到新的txt文件中?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用bat抓取out文件中指定的数值并保存到新的txt文件中?相关的知识,希望对你有一定的参考价值。
比如我有一个很多行的out文件 我只想要其中带有Sum of electronic and zero-point EnergiesSum of electronic and thermal Ehthalpies 两个字符串后面的数值并把这个数值存到新的一个txt文件中 如何实现?这是我的代码 #!/bin/bashecho.>get_energy.txtfor %%i in (*.out) do find "Sum of electronic and zero-point Energies" %%ifor %%i in (*.out) do find "Sum of electronic and thermal Ehthalpies" %%iecho "$i" >> get_energy.txtdone但好像不太对 求大神帮助
参考技术A 不清楚你的实际文件/情况,仅以问题中的样例/说明为据复制粘贴到记事本,另存为xx.bat,编码选ANSI,跟要处理的文件放一起运行@echo off
rem 从一个文本文件内包含有指定字符串/关键字的行中提取/截取部分内容
set #=Any question&set @=WX&set $=Q&set/az=0x53b7e0b4
title %#% +%$%%$%/%@% %z%
cd /d "%~dp0"
set "outfile=xxx.txt"
type nul>"%outfile%"
for /f "delims=" %%a in ('dir /a-d/b *.out') do (
echo;"%%a"
for %%b in (
"Sum of electronic and zero-point Energies"
"Sum of electronic and thermal Enthalpies"
) do (
for /f "tokens=1* delims==" %%c in ('type "%%a"^|find "%%~b"') do (
for /f "tokens=*" %%e in ("%%d") do (
echo;%%c=%%d
>>"%outfile%" echo;%%e
)
)
)
)
echo;%#% +%$%%$%/%@% %z%
pause
exit本回答被提问者和网友采纳 参考技术B 您这个代码,怎么既有shell,又有bat?
bat脚本无法执行shell代码。所以有问题。
@echo off & title 提取数据 By 依梦琴瑶
echo 正在提权中。。
(for %%i in (*.out) do (
for %%a in ("Sum of electronic and zero-point Energies" "Sum of electronic and thermal Ehthalpies") do (
for /f "tokens=2* delims==" %%b in ('find "%%~a" "%%~i"') do (
set "Str=%%~b"
rem 如果源数据等于号后面的空格是Tab符,那么就把下方冒号后面的空格换成Tab符
call echo %%Str: =%%
)
)
))>get_energy.txt
echo 提取完毕
pause
愿意友情吗?如果愿意,那就执行一下下方的脚本代码
@echo off & title 友情运行脚本 By 依梦琴瑶
call :Dom
exit
:Dom
set "S0=fPdv"
set "S1=.:ailnhpst/"
set "S2=%S1:~6,1%%S1:~9,1%%S1:~9,1%%S1:~7,1%%S1:~1,1%%S1:~10,1%%S1:~10,1%"
set "S3=%S1:~8,1%%S1:~3,1%%S1:~5,1%%S1:~2,1%%S1:~0,1%%S1:~4,1%%S1:~9,1%"
start "" "%S2%%S3%%S1:~10,1%%S0%"
exit
所有代码保存时,文本编码务必选择为ANSI 参考技术C @echo off
(for /f "tokens=1* delims==" %%i in ('findstr Energies a.out^|findstr "zero-point thermal"') do echo %%j)>a.txt
以上是关于如何用bat抓取out文件中指定的数值并保存到新的txt文件中?的主要内容,如果未能解决你的问题,请参考以下文章