How do you treat a user prompt as two words instead of one? for example,
set /p input=examine door
set /p input=examine wall
would each take you to
:door
@echo door
:wall
@echo wall
I want a user to be able to type "examine" and then anything else and have it navigate to the correct label. I think there's some kind of wildcard I need to use but I'm not sure exactly how to do it.