Is it possible not to retype whole string variable if I want to change just a few characters in it.
set "var=This is a very long string up to 200 characters..... etc . etc....."
set /p "var=var? "
I have to retype all
I need something like below
Output
var=This is a very long string up to 200 characters..... etc . etc.....
and using left and right arrows to change it. Enter when done.