Answers for "@echo off setlocal rem rem Note the type rem set VAR=Hello wrold. rem rem print the variable and fix the rem typo in one go: rem echo %VAR:wrold=world% endlocal"

Go
0

@echo off setlocal rem rem Note the type rem set VAR=Hello wrold. rem rem print the variable and fix the rem typo in one go: rem echo %VAR:wrold=world% endlocal

@echo off

setlocal

rem
rem  Note the type
rem
set VAR=Hello wrold.

rem
rem print the variable and fix the
rem typo in one go:
rem
echo %VAR:wrold=world%

endlocal
Posted by: Guest on January-19-2021

Browse Popular Code Answers by Language