Board logo

标题: [文本处理] [已解决]批处理如何才能读取并比对文件中的“BM00"字样? [打印本页]

作者: errort    时间: 2019-10-30 15:15     标题: [已解决]批处理如何才能读取并比对文件中的“BM00"字样?

本帖最后由 errort 于 2019-11-4 09:15 编辑

the input is : /ss
      result is : BM0012345
command
作者: errort    时间: 2019-10-30 15:19

需求项:比对存在BM00即pass,不存在或者反着排列都fail。
作者: Batcher    时间: 2019-10-30 15:28

回复 2# errort
  1. findstr /c:"result is : BM00" "1.txt" >nul && echo pass || echo fail
复制代码

作者: Batcher    时间: 2019-10-30 15:41

回复 2# errort
  1. @echo off
  2. findstr /c:"result is : BM00" "1.txt" >nul
  3. if %errorlevel% equ 0 (
  4.     echo pass
  5. ) else (
  6.     echo fail
  7. )
复制代码

作者: errort    时间: 2019-10-30 20:30

回复 4# Batcher


    十分感谢😁




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