Difference between revisions of "Replacing Text in Batch Syntax"

From scripting
Jump to: navigation, search
(Created page with "You may want to replace a portion of a string with a another string. This article may help you in this process. setLocal EnableDelayedExpansion set /p Var4=<trap.txt For...")
 
(No difference)

Latest revision as of 19:53, 24 April 2017

You may want to replace a portion of a string with a another string. This article may help you in this process.


setLocal EnableDelayedExpansion
set /p Var4=<trap.txt
For /f "tokens=1 delims=§" %%a in (trap.txt) Do (
set C=%Var4%
echo.%Var4%
set D=!C:§%%a=!
echo.>queue.txt
)