matlab、文本文件
我有一堆文本文件,其中既有字符串又有数字,但字符串仅位于前几行。
我正在尝试编写一个脚本,该脚本进入我的文件夹,搜索文件夹中的所有文件,并从文件中删除文本,然后将其余部分写入新的文本文件中。
有人知道怎么做吗?
I have a bunch of text files which have both strings and numbers in it, but the string are just in the first few rows.
I'm trying to write a script which go in to my folder search all the file in the folder and delete the text from the files and write the rest as it is in the new text file.
Does anybody know how?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这不是 MATLAB 的一个很好的用途。
我认为你最好用 Python 或 shell 编写这个脚本。如果您使用的是 *nix 或 mac,并且您的文件都在同一目录中并且文件扩展名为 .txt,那么您可以使用 shell 中的 tr 来执行此操作,这是一种方法:
运行。将上面的代码保存为文件,使其可执行(chmod a+x 文件名),然后在包含文本文件的目录中运行它。
I don't think this is a good use of MATLAB.
I think you'd be better off scripting this in Python or shell. Here is one way you could do it with tr in shell if you're on *nix or mac and if your files are all in the same directory and all have the file extension .txt:
To run. save the code above as a file, make it executable (chmod a+x filename), and run it in the directory with your text files.
如果字符串行数始终相同,您可以使用带有 'headerlines' 选项的 textread() 来跳过这些字符串行,然后写出整个文本缓冲区。
If the number of string lines is always the same, you can use textread() with 'headerlines' option to skip over those string lines, then write the entire text buffer out.