批处理文件从文本文件中读取特定字母?
我有一个名为 name.txt 的 txt 文件 有没有办法创建一个批处理文件来读取 name.txt 中每一行的 2 到 7 个字母,并忽略其余部分并将其输出到另一个名为 name2.txt 的 txt 文件中。例如我在txt文件中有这个:
G2010060sample.png
G2010061sample.png
G2010062sample.png
G2010063sample.png
和批处理文件将创建一个新的 txt 文件,如下所示:
2010060.png
2010061.png
2010062.png
2010063.png
I have a txt file called named.txt Is there a way to create a batch file to read every letters 2 through 7 letters from every line from name.txt and ignore the rest and output it onto a different txt file called name2.txt. For example I have this in the txt file:
G2010060sample.png
G2010061sample.png
G2010062sample.png
G2010063sample.png
and the batch file would create a new txt file like this :
2010060.png
2010061.png
2010062.png
2010063.png
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
优秀的在线资源http://ss64.com/nt/syntax.html
Excellent online ressource http://ss64.com/nt/syntax.html