@echo off
:loop
set /p input="> "
echo %input%|find /i "my name is" >nul && echo That's a nice name.
How would I take input
and if it has my name is
in it it stores the name as a variable.
My goal is to take there name and store it as a variable and use it when it reply.