We can replace strings in a batch file using the following command
set str=\"jump over the chair\" set str=%str:chair=table%
These lines wo
This works fine
@echo off set word=table set str=jump over the chair set rpl=%str:chair=%%word% echo %rpl%