我需要搜索字符串" style"跨文件夹中的所有html文件。 在输出中我需要文件名和字符串"样式"的出现次数。 例如输出就像
a.html 3
b.html 6
c.html 7
I have tried using
find /c "style" *.html
问题是在一行中它只读取一次字符串并移到下一行 即如果文件包含内容: 风格风格的风格 样式 它只读数为2。 我需要数为5,搜索也应该在整个文件夹中。 请帮忙
答案 0 :(得分:1)
只要文件名不包含空格,特殊批处理字符或算术运算符(如-
),这应该可以。
@echo off
setlocal EnableDelayedExpansion
set "word=style"
for /F "tokens=1* delims=:" %%a in ('findstr "%word%" *.html') do (
set "line=%%b"
set "line=!line:"=!"
for %%c in ("!line:%word%=" "!") do set /A "count[%%a]+=1"
set /A "count[%%a]-=1"
)
for /F "tokens=2,3 delims=[]=" %%a in ('set count[') do echo %%a %%b
答案 1 :(得分:-1)
for /F "delims=" %G in ( 'findstr /S /M /I "style" "%CD%\*.html" ') do @find /c "style" "%~G" | findstr /V /R "^S"