发布网友 发布时间:2022-04-23 09:35
共2个回答
热心网友 时间:2023-07-09 09:18
是不是等号左边每个都单独作为一个变量
@echo off
for /f "tokens=1,2 delims==" %%i in (文件.txt) do (
set %%i=%%j
echo 变量%%i值为%%j>>查看变量.txt
echo 变量%%i值为%%j
pause
)
热心网友 时间:2023-07-09 09:18
@echo off
for /f "delims=" %%a in (test.txt) do (
echo %%a|findstr "=">nul&&set "%%a"
)
读取test.txt文件,如果有username=user_name这样的行,那么会生成变量username其值为user_name