所以我有一个 txt(infos.txt),其中 Infos 中有一句话:
echo This is a Sentence!
echo This is a Sentence in the 2nd line!
现在我用
for /f "skip=1" %%G IN (infos.txt) DO if not defined line set "line=%%G"
echo %line%
向我展示句子,但总是只有第一个单词。如果你能帮助我,那就太好了。感谢未来的回答。
答案1
所以,谢谢你的评论!我把它修复如下:
前:
for /f "skip=1" %%G IN (infos.txt) DO if not defined line set "line=%%G"
echo %line%
后:
for /f "skip=1 delims=" %%G IN (infos.txt) DO if not defined line set "line=%%G"
echo %line%
我刚刚添加了 delims=。
所以现在它向我显示整个句子并跳过第一行。