Board logo

标题: [文本处理] 批处理怎样删除文本指定内容? [打印本页]

作者: keshun    时间: 2011-10-31 19:13     标题: 批处理怎样删除文本指定内容?

1.txt
name=鲍亚 datestop=2011-11-12 ip=2561鲍亚 prio=0 active=yes
name=洪辉 datestop=2011-11-05 prio=0 ip=3555洪辉 active=yes
name=黄峰 datestop=2011-08-23 ip=3590黄峰 active=yes prio=0
name=芬 datestop=2011-09-15 ip=3633芬 active=yes prio=0
name=李涛 datestop=2011-11-07 ip=3664李涛 prio=0 active=yes
name=易涛 datestop=2011-12-15 active=yes ip=3679易涛 prio=0

要求删除文本内容“prio=0”和“active=yes”,其他内容不变。输出到2.txt
作者: awk    时间: 2011-10-31 19:40

  1. sed "s/prio=0\|active=yes//" 1.txt >2.txt
复制代码

作者: sxw    时间: 2011-10-31 19:45

本帖最后由 sxw 于 2011-10-31 19:46 编辑
  1. sed -e "s/prio=0\|active=yes//g" 1.txt >2.txt
复制代码

作者: keshun    时间: 2011-10-31 23:01

如果不用第三方外部命令,只用内部命令能实现吗
作者: sxw    时间: 2011-10-31 23:09

回复 4# keshun


    用set替换吧
作者: keshun    时间: 2011-10-31 23:49

set直接替换sed,使用以上代码不行,能否帮我弄个完整代码,因为我要处理的文件可能在不同的多台电脑上处理,要第三方插件支持就麻烦点。
作者: keshun    时间: 2011-11-1 13:16

用set要怎样才能实现??
作者: CrLf    时间: 2011-11-1 13:59

set 无法替换等号为其他符号,因为变量替换中,出现的第一个等号一定是区分前后参数的分隔符,所以纯批比较麻烦,还是建议用 sed,扬长避短
作者: lvsehuaxue    时间: 2011-11-1 20:30

  1. @echo off&setlocal enabledelayedexpansion
  2. for /f "tokens=1-6 delims==" %%a in (a.txt) do (
  3.     set "str=%%a?%%b?%%c?%%d?%%e?%%f"
  4.     set "str=!str:prio?0=!"
  5.     set "str=!str:active?yes=!"
  6.     echo !str:?==!
  7. )
复制代码

作者: keshun    时间: 2011-11-2 13:41

运行3楼代码输出2.txt如下:
Invalid keyboard code specified
name=鲍亚 datestop=2011-11-12 ip=2561鲍亚  
name=洪辉 datestop=2011-11-05  ip=3555洪辉
name=黄峰 datestop=2011-08-23 ip=3590黄峰  
name=芬 datestop=2011-09-15 ip=3633芬  
name=李涛 datestop=2011-11-07 ip=3664李涛  
name=易涛 datestop=2011-12-15  ip=3679易涛

Invalid keyboard code specified这行能不能清掉
作者: keshun    时间: 2011-11-2 20:05

Invalid keyboard code specified 这行能不能清掉
作者: awk    时间: 2011-11-2 23:52

回复 10# keshun


哪个版本的sed啊?




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