标题: 查找某字符串,并返回此字符串所在行整行或首几位。
[打印本页]
作者: DebianGrub
时间: 2009-12-22 14:23
标题: 查找某字符串,并返回此字符串所在行整行或首几位。
有a.txt
aa
bb
有b.txt
10==||wxllart88.aa.cn||
www.aa.com
100==||shkabin.bb.cn||
www.bb.com
101==||szsdhty.cc.cn||
www.cc.com
实现输出效果
对a.txt进行遍历返回输出c.txt格式
10
100
说明:因为a.txt中的aa和bb两行在b.txt有匹配,返回其==号前面的数字
而101那一行因为没有匹配。所以不返回。
作者: DebianGrub
时间: 2009-12-22 14:24
for /f %%i in (a.txt) do findstr %%i b.txt 找到后>>c.txt写入c.txt
作者: DebianGrub
时间: 2009-12-22 14:31
@echo off & setlocal enabledelayedexpansion
del /q "123.txt"
for /f "delims=" %%a in (a.txt) do (
for /f "tokens=1* delims=:" %%i in ('call echo %%a^|find /i "A"') do Echo %%a>>"123.txt"
)
exit
作者: 523066680
时间: 2009-12-22 16:19
debian耶……
作者: DebianGrub
时间: 2010-7-27 12:23
不但debian还grub.