In a batch file, I have a string abcdefg. I want to check if bcd is in the string.
abcdefg
bcd
Unfortunately it seems all of the solutions I\'m find
ECHO %String%| FINDSTR /C:"%Substring%" && (Instructions)