Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要从文本文件中提取日期。文件采用管道分隔格式。它有一系列可能有价值也可能没有价值的列。我需要第二行第三列的日期。之后,将该日期写入新文件。怎么做?
谢谢!!!
批处理文件中有这样的东西吗?
for /f "skip=1 tokens=3 delims=|" %%G IN (%1) DO (echo %%G > %2)
跳过第一行并在管道分隔文件中输出第三个标记。文件作为第一个参数 (%1) 提供,然后被回显。