计数|

时间:2013-07-25 22:25:23

标签: batch-file count

我需要脚本帮助,脚本应该在特定字符串之前计算|的数量。

info.txt

text=jam|hello=123|result=ok|cow=cat|...

因此,在此示例中,如果搜索result =,则答案应为2 这可以批量生产吗?

4 个答案:

答案 0 :(得分:2)

试试这个:

@ECHO OFF &SETLOCAL
SET "string=text=jam|hello=123|result=ok|cow=cat|..."
SET "stop=result=ok"
SET "char=|"

SET /a count=-1
SET "org=%string%"
:loop
FOR /f "tokens=1*delims=%char%" %%a IN ("%string%") DO SET "this=%%a"&SET "that=%%b"
IF DEFINED that (SET "string=%that%") ELSE (SET "string=%this%")
SET /a count+=1
IF NOT DEFINED string (ECHO NOT found: "%stop%" &GOTO :EOF)
IF NOT "%this%"=="%stop%" GOTO :loop
ECHO Number of "%char%" IN "%org%" until "%stop%": %count%

答案 1 :(得分:1)

这使用名为repl.bat的辅助批处理文件:from - http://www.dostips.com/forum/viewtopic.php?f=3&t=3855

如果您在searchstring.bat下面调用此代码,则可以像这样启动它

searchstring "result="

它希望每个文件只匹配一个,并且区分大小写。

@echo off
type "file.txt" | find "%~1" | repl "(.*).%~1.*" "$1" | repl "\x7c" "\r\n" x | find /c /v ""

下面的批处理文件将返回一个行号计数和数字本身,当数字大于零时,每行file.txt

@echo off
if "%~1"=="" ( echo add a search term&pause&goto :EOF)
for /f "tokens=1,* delims=:" %%a in ('findstr /n "^" "file.txt" ') do (
for /f %%c in (' echo "%%b"^| find "%~1" ^| repl "(.*).%~1.*" "$1" ^| repl "\|" "\r\n" x ^| find /c /v "" ') do (
if %%c GTR 0 echo Line %%a: %%c
)
)
pause

答案 2 :(得分:0)

如果你想,例如,第3个字符串:

SET "text=jam|hello=123|result=ok|cow=cat|..."
FOR /F "TOKENS=3" %%t IN ("%text%") DO ECHO %%t

如果您需要,例如,第3个字符串及以下内容:

SET "text=jam|hello=123|result=ok|cow=cat|..."
FOR /F "TOKENS=2,*" %%t IN ("%text%") DO ECHO %%u

答案 3 :(得分:0)

这是另一种方式(使用你的info.txt文件)。 不区分大小写。处理文件中匹配字符串的多行。

@echo off
set "SpecificString=result=ok"
set /A cnt=0
for /F "tokens=*" %%A IN (info.txt) do (
   for /F "usebackq tokens=*" %%B IN (`echo."%%A" ^| find /I "%SpecificString%"`) do (
      call :Parse "%%~A"
      )
   )
pause
goto :eof

:Parse
for /F "usebackq tokens=1* delims=^|" %%B IN (`echo."%~1"`) do (
   if /I "%%~B"=="%SpecificString%" (
      echo.Cnt=%Cnt% in "%%A"
      echo.
      set /A Cnt=0
      goto :eof
      )
   set /A Cnt+=1
   call :Parse "%%~C
   )
goto :eof