So basicly, is there any way to make it so a Batch file doesnt need an exact answer to do an action. For example:
if %c%=images goto :images
The above means that I must type in the exact word, images
, and if I add any more words it wont go to the :images
label. How would I make it to go to a label using just a word from a sentence that you input.
For example if it asks me:
Where would you like to go?
And I say:
The image section please.
Then it takes me to the image section without the need for just saying image
.
Is this possible?