patternMinor
Batch file for looking through text files
Viewed 0 times
filetextbatchlookingfilesforthrough
Problem
I was creating a program and I was trying to explain it to some of my coding friends. They commented that it was too tedious typing out all the "if" commands. How do I streamline this code?
Note: this is a ".bat" program.
Waiter.bat
Using the user input, the batch file looks inside Menu.txt and then it echos that description for that one food item.
Menu.txt
Note: this is a ".bat" program.
Waiter.bat
@echo off
set /p Food="What would you like to eat? "
if /i %Food%==pizza findstr "Pizza" Menu.txt
if /i %Food%==bread findstr "Bread" Menu.txt
if /i %Food%==macaroni findstr "Macaroni" Menu.txt
pauseUsing the user input, the batch file looks inside Menu.txt and then it echos that description for that one food item.
Menu.txt
Pizza | Flattened dough, layered with tomato sauce, cheese, and choice of toppings.
Bread | Dough that has been baked.
Macaroni | Macaroni pasta with cheese.
Solution
With the help of a Windows user in chat (Thank's Simon!), we've got a much better solution figured out:
This will concatenate the pipe character to the end of the user-entered string and find the line that begins with that literal string.
Ordinarily,
As long as your
You just have to keep the formatting and don't put the pipe character anywhere else in the file.
@echo off
set /p Food="What would you like to eat? "
set "Food=%Food% |"
findstr /C:"%Food%" Menu.txt
pauseThis will concatenate the pipe character to the end of the user-entered string and find the line that begins with that literal string.
Ordinarily,
findstr expects a space delimited list of words to search for. Using the /C: flag will look for the literal string rather than breaking the string up into separate strings and finding each individual word.As long as your
Menu.txt file maintains the format "MenuItem | Description", this .bat file will work and you won't have to edit it each time you edit your menu.You just have to keep the formatting and don't put the pipe character anywhere else in the file.
Code Snippets
@echo off
set /p Food="What would you like to eat? "
set "Food=%Food% |"
findstr /C:"%Food%" Menu.txt
pauseContext
StackExchange Code Review Q#82426, answer score: 4
Revisions (0)
No revisions yet.