我想从App.Config文件中获取第4行。下面的命令让我知道。 我不知道如何将该行保存到变量中。 任何人都可以给我它的语法吗?
HTMLElement.setSelectionRange()
答案 0 :(得分:0)
您可以使用set
命令:
for /F "skip=3 delims=" %%i in (App.Config) do (
set my_line=%%i
goto nextline
)
:nextline
echo %my_line%