标题: [文本处理] [已解决]批量获取以序号命名的html,并以html文本里的标题重命名网页 [打印本页]
作者: wxyz0001 时间: 2019-11-18 16:31 标题: [已解决]批量获取以序号命名的html,并以html文本里的标题重命名网页
批量获取以序号命名的html,并以html文本里的标题重命名网页
下面是自己写的代码,速度较慢,怎么写快些呢?
—————————————————————- @echo off
- chcp 65001
- for /f "delims=" %%i in ('dir /a-d /b *.html') do (
- for /f "delims=" %%j in ('type %%i^|findstr /rc:"<title>"') do (
- for /f "tokens=2,3* delims=>_" %%a in ("%%j") do (
- ren "%%~nxi" "%%a%%~xi"
- )
- )
- )
- pause>nul
复制代码
作者: wxyz0001 时间: 2019-11-18 20:07
简化了一下,但是速度没有明显的变化
_______________________________- @echo off
- chcp 65001
- for /f "delims=" %%i in ('dir /a-d /b *.html') do (
- for /f "tokens=2,3* delims=>_" %%j in ('type %%i^|findstr /irc:"<title>"') do (
- ren "%%~nxi" "%%j%%~xi"
- )
- )
- pause>nul
复制代码
作者: flashercs 时间: 2019-11-18 20:08
- @echo off
- cd /d "%~dp0"
- chcp 65001
- for /f "tokens=1* delims=:" %%A in ('findstr /ilc:"<title>" *.html') do (
- for /f "tokens=2 delims=>_" %%a in ("%%B") do (
- ren "%%A" "%%a.*"
- )
- )
- pause
- chcp 936
- exit /b
复制代码
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |