标题: [文本处理] [分享]批处理获取文本中包含指定字符的列 [打印本页]
作者: Batcher 时间: 2023-7-3 10:20 标题: [分享]批处理获取文本中包含指定字符的列
【问题描述】
1.txt- AAAA1,BBBB2,CCCC3,DDDD4
- EEE1,FFFF2,BBBB3,DD4
- GGG1,HHHH3
- IIII2,KKKK1,AAAA1
复制代码
我是先用findstr在文档中搜索BBB
搜到以后返回的行的内容是
AAAA1,BBBB2,CCCC3,DDDD4
但是我想返回的结果是BBBB2
卡在这一步了
作者: Batcher 时间: 2023-7-3 10:20
【解决方案】
请参考Q-04和Q-05把bat文件和txt文件都保存为ANSI编码:
https://mp.weixin.qq.com/s/Koje4FufWxWBs7ioDy_LJA
test-1.bat- @echo off
- cd /d "%~dp0"
- setlocal enabledelayedexpansion
- set "StrSub=BBB"
- for /f "delims=" %%i in ('findstr "%StrSub%" "1.txt"') do (
- for %%a in (%%i) do (
- set "StrThis=%%a"
- if "!StrThis:%StrSub%=!" neq "%%a" (
- echo,%%a
- )
- )
- )
- pause
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |