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

[文本处理] 帮修改下替换文本字符串的bat代码

  1. @echo off & setlocal EnableDelayedExpansion
  2. for /f "delims=" %%i in ('"dir /a/s/b/on *.html"') do (
  3. set file=%%~fi
  4. set file=!file:/=/!
  5. echo !file! >> sitemap.txt
  6. )
复制代码


执行后得到结果

D:\wwwroot\xxx.cn\403.html
D:\wwwroot\xxx.cn\404.html
D:\wwwroot\xxx.cn\index.html
D:\wwwroot\xxx.cn\play.html
D:\wwwroot\xxx.cn\sitemap.html
D:\wwwroot\xxx.cn\1213\js\mode\clike\index.html
D:\wwwroot\xxx.cn\1213\js\mode\clike\scala.html

如何把结果中
D:\wwwroot\ 替换成 www.
\替换成/
每行尾部有空格 去掉

怎么改一下代码 得到我需要的格式的结果

我想要的结果是
www.xxx.cn/403.html
www.xxx.cn/404.html
www.xxx.cn/index.html
www.xxx.cn/play.html
www.xxx.cn/sitemap.html
www.xxx.cn/1213/js/mode/clike/index.html
www.xxx.cn/1213/js/mode/clike/scala.html
我是技术小白 我来求助 真希望有天我也能成为技术大牛

  1. @echo off
  2. setlocal EnableDelayedExpansion
  3. (for /f "delims=" %%i in ('dir /a/s/b/on *.html') do (
  4.     set "file=%%~fi"
  5.     set "file=!file:*:\wwwroot\=www.!"
  6.     set "file=!file:\=/!"
  7.     echo !file!
  8. ))> sitemap.txt
复制代码
我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

  1. //&cls&(dir /a/s/b/on *.html|cscript -nologo -e:jscript "%~f0")>>"导出.txt"&pause&exit
  2. WSH.echo(WSH.StdIn.ReadAll().replace(/\\/g, '/').match(/wwwroot.+/g).join('\r\n'));
复制代码

TOP

返回列表