批处理脚本从文本文件复制 x 行,不带尾随空格

发布于 2024-12-18 04:53:08 字数 214 浏览 2 评论 0原文

我正在尝试复制前 x 行
但是当我打开 list1 时,我在每行后面看到空格
我希望每行后面都没有空格

for /F "eol=; tokens=1 delims=;" %%I in (text.txt) do (
    set /a count+=1
    if !count! leq 10 echo %%I>>list1
)

im trying to copy the first x lines
but when i open list1 i see spaces after each line
i'd like to have no space after each lines

for /F "eol=; tokens=1 delims=;" %%I in (text.txt) do (
    set /a count+=1
    if !count! leq 10 echo %%I>>list1
)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

音盲 2024-12-25 04:53:08

试试这个:

for /F "eol=; tokens=1 delims=; " %%I in (text.txt) do (
  set /a count+=1
  if !count! leq 10 echo %%I>>list1
)

注意 'delims=; 中的空格'。

Try this instead:

for /F "eol=; tokens=1 delims=; " %%I in (text.txt) do (
  set /a count+=1
  if !count! leq 10 echo %%I>>list1
)

Note the space in 'delims=; '.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文