使用批处理脚本(批处理文件)逐行解析文本文件

时间:2015-06-14 20:12:51

标签: windows batch-file scripting cmd

所以,我在批处理脚本中编程,我遇到了这个问题。以下代码将使用yourwords.txt文件并解析它。 existedWord变量将包含文本文件的最后一个单词。因此,每次运行此程序时,它只会将用户的输入与文本文件中的最后一个单词进行比较,但我希望它从头开始比较,如果该单词存在于文本文件中,则只显示消息为“重复单词” ”。如果该单词不在文本文件中,则将其添加到.txt文件中,并将消息显示为“这是一个新单词。”

.txt文件包含每行字数。例如,

apple
banana
cat
dog
elephant
fish
gone
home
ignorant

注意:此文本文件中的单词数可能是数百个。

我的目标是比较此文本文件中的每个单词,看看用户输入是否与.txt文件中存在的单词匹配。

@echo off

:START
cls
echo.
echo Enter a word:
set /p "cho=->"
for /F "tokens=*" %%A in (yourwords.txt) do (set existedWord=%%A) 
if /I %cho%==%existedWord% (goto REPEATEDWORD)
echo %cho% >> yourwords.txt
)

:SUCCESSFUL
echo.
echo  That is a new word.
Ping -n 5 Localhost >nul
goto START

:REPEATEDWORD
echo.
echo  Sorry! that word is repeated word.
echo.
pause
goto START

1 个答案:

答案 0 :(得分:1)

您不需要逐行解析文件。

@echo off
:START
cls
echo.
set /p "cho=Enter a word: -> "
findstr /i "\<%cho%\>" yourwords.txt >nul 2>&1
if %errorlevel%==0 (
  echo.
  echo  Sorry! that word is repeated word.
  echo.
) else ( 
echo.
  echo  That is a new word.
  echo %cho%>>yourwords.txt
  Ping -n 5 Localhost >nul
)
goto START