0
echo sometext
set /p s=
的其餘部分卻會輸出如下:
sometext
*will read this line*
,我希望它是在同一條直線像這樣:
sometext *will read the rest of the line*
但是如何?
echo sometext
set /p s=
的其餘部分卻會輸出如下:
sometext
*will read this line*
,我希望它是在同一條直線像這樣:
sometext *will read the rest of the line*
但是如何?
此:
SET /P s="sometext "
將打印sometext
和放置提示右側的文本之後。
你應該初始化輸入變量,把雙引號的正確的地方:
SET "s="
SET /P "s=sometext> "
不工作。產生'sometext ^>'提示符,但是'SET/P「s =」sometext ^>「」'作品... – Magoo
糟糕:'>'已經被雙引號轉義了。謝謝! – Endoro