For example:
for /F "taken=1,2* delims=;" %%i in(%TABLES%) do(
echo select %%j from %%i; | sed -e “s/,/||’,’||/g” -e “s/@/||’@’/g” >> %TABLES_OUT/¥%%i.sql
I want to replace string string instead of sed
.
Like this
, ➡︎ ||’,’||
@ ➡︎ ||’@
What should I do?