Board logo

标题: [文本处理] 求大神。批处理怎样获取文本中的某个值? [打印本页]

作者: Hello_cc_    时间: 2017-6-14 17:41     标题: 求大神。批处理怎样获取文本中的某个值?

我现在想做这样一个小脚本,就是有一个txt的文本,里面存储数据类似:a=1,我现在想通过批处理获取a的值,并进行判断,这个要怎么实现,本人小白,大神给贴个代码。。。
作者: ShowCode    时间: 2017-6-14 17:55

  1. @echo off
  2. for /f "delims=" %%i in ('type "1.txt" ^| findstr "^a="') do (
  3.     echo %%i
  4. )
  5. pause
复制代码

作者: luohao8810    时间: 2017-6-20 16:23

@echo off
setlocal enabledelayedexpansion
for /f "delims=" %%i in ('^findstr "^a=" "1.txt"') do (
    set str=%%i
    echo !str:~2,1!
   
)


pause




欢迎光临 批处理之家 (http://www.bathome.net/) Powered by Discuz! 7.2