需要使用DOS命令将一个文件分割成多个文件
我有一个 txt 文件,其中的行由 <
和 >
分隔。每行以 <
开头,以 >
结尾(文件中不包含引号)。
我需要使用 DOS 命令将这些标签中的每一行拆分为一个新文件。每行中有不同的符号,如 |
和空格,应忽略。
创建新文件时仅应考虑开头 <
和结尾 >
。
这怎么能做到呢?
I have a txt file with lines delimited by <
and >
. Each line begins with <
and ends with >
(quotes not included in the file).
I need to split up each line within these tags to a new file using DOS commands. There are different symbols like |
and spaces in each line which should be ignored.
Only beginning <
and ending >
should be taken into account for creating new files.
How can this be done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面的代码应该可以做到。文件名也可以从行内容中提取。
Following code should do it. File name may also be extracted from line content.