[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖

[文本处理] [已解决]如何用bat删除xml里的指定行?

本帖最后由 pcl_test 于 2016-5-7 14:03 编辑

我这里有个xml文件,我需要删除6217这一行:<public type="mipmap" name="sym_app_on_sd_unavailable_icon" id="0x010d0001" />   <public type="interpolator" name="accelerate_quad" id="0x010c0000" />
    <public type="interpolator" name="decelerate_quad" id="0x010c0001" />
    <public type="interpolator" name="accelerate_cubic" id="0x010c0002" />
    <public type="interpolator" name="decelerate_cubic" id="0x010c0003" />
    <public type="interpolator" name="accelerate_quint" id="0x010c0004" />
    <public type="interpolator" name="decelerate_quint" id="0x010c0005" />
    <public type="interpolator" name="accelerate_decelerate" id="0x010c0006" />
    <public type="interpolator" name="anticipate" id="0x010c0007" />
    <public type="interpolator" name="overshoot" id="0x010c0008" />
    <public type="interpolator" name="anticipate_overshoot" id="0x010c0009" />
    <public type="interpolator" name="bounce" id="0x010c000a" />
    <public type="interpolator" name="linear" id="0x010c000b" />
    <public type="interpolator" name="cycle" id="0x010c000c" />
    <public type="mipmap" name="sym_def_app_icon" id="0x010d0000" />
    <public type="mipmap" name="sym_app_on_sd_unavailable_icon" id="0x010d0001" />
    <public type="integer" name="config_shortAnimTime" id="0x010e0000" />
    <public type="integer" name="config_mediumAnimTime" id="0x010e0001" />
    <public type="integer" name="config_longAnimTime" id="0x010e0002" />
    <public type="integer" name="status_bar_notification_info_maxnum" id="0x010e0003" />
    <public type="integer" name="config_soundEffectVolumeDb" id="0x010e0004" />
    <public type="integer" name="config_lockSoundVolumeDb" id="0x010e0005" />
    <public type="integer" name="config_activityShortDur" id="0x010e0006" />
    <public type="integer" name="config_activityDefaultDur" id="0x010e0007" />
    <public type="integer" name="config_radioScanningTimeout" id="0x010e0008" />
    <public type="integer" name="config_networkTransitionTimeout" id="0x010e0009" />
    <public type="integer" name="config_max_pan_devices" id="0x010e000a" />

大大们帮帮忙吧!
2

评分人数

    • pcl_test: 未按版规发帖PB -6
    • Batcher: 感谢给帖子标题标注[已解决]字样PB + 2

永远都只会求助?不会自己动手尝试?
***共同提高***

TOP

我试了的,不得行呀

TOP

回复 3# ttrrf


    请把你尝试过的代码贴出来,我可以帮忙修改。
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 4# Batcher

type arrays.xml|findstr /v /i "zh_tw 绻侀珨涓枃">new.xml

TOP

回复 5# ttrrf


http://www.bathome.net/thread-26230-1-1.html
这个帖子也是你发的对吧?
虽然你付钱给人家了,但是不能指望那一条命令能够解决所有的问题。
你至少要搞清楚那条命令是什么意思嘛
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 6# Batcher

我以知道了,是删除字符串的代码,是不?那以上的如何删除呢?请指教下!

TOP

  1. findstr /v "sym_app_on_sd_unavailable_icon..id=.0x010d0001" public.xml > public_new.xml
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 8# Batcher


    能否把代码改下,我是在public.xml的上一级目录里,如果要删除public.xml里的某一行后,重命名public_new.xml后再命名回public.xml。如何做呢?

TOP

回复 9# ttrrf


    上一级目录叫什么名字?
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 10# Batcher


        你随便给个名字吧!我在外面的。

TOP

回复 11# ttrrf
  1. @echo off
  2. pushd 随便给个名字
  3. findstr /v "sym_app_on_sd_unavailable_icon..id=.0x010d0001" public.xml > public_new.xml
  4. move /y public_new.xml public.xml
  5. popd
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

回复 12# Batcher


    pushd后面能否是一个路径?

TOP

回复 13# ttrrf


    表示无语.......菜鸟路过~pushd后面本来就是一个路径~
这种问题你完全可以在cmd下输入pushd/?查看下帮助~....
活着就是为了改变世界

TOP

回复 14# 林小七


    我没在电脑旁好不好!

TOP

返回列表