Board logo

标题: [文本处理] [已解决]批处理如何获取规定数字? [打印本页]

作者: wrrbb    时间: 2012-3-20 10:27     标题: [已解决]批处理如何获取规定数字?

auctionid="12960519722"   
auctionid="1434335662"
auctionid="45059574332"

要提取htm文件中符合auctionid= 后面的数字,怎么获取呢?



12960519722
1434335662
45059574332

给一个范例文件,弄了半天没弄成功。
作者: apang    时间: 2012-3-20 10:53

  1. @echo off
  2. for /f "tokens=2 delims== " %%a in (test.txt) do (
  3.     echo %%~a
  4. )
  5. pause
复制代码

作者: wrrbb    时间: 2012-3-20 12:17

apang 发表于 2012-3-20 10:53



    好像不行
作者: apang    时间: 2012-3-20 13:05

  1. @echo off&setlocal enabledelayedexpansion
  2. for /f "delims=" %%a in ('type "auction.htm"^|findstr /i "auctionid"') do (
  3.     set str=%%a
  4.     set str=!str:*auctionid=!
  5.     for /f "tokens=1 delims=>=" %%b in ("!str!") do echo %%~b
  6. )
  7. pause
复制代码

作者: wrrbb    时间: 2012-3-20 13:43

搞定啦,哈哈,谢谢。
作者: wrrbb    时间: 2012-3-20 13:55

本帖最后由 wrrbb 于 2012-3-20 14:05 编辑

全部问题解决




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