matlab、文本文件

发布于 2024-10-31 02:41:01 字数 128 浏览 2 评论 0原文

我有一堆文本文件,其中既有字符串又有数字,但字符串仅位于前几行。

我正在尝试编写一个脚本,该脚本进入我的文件夹,搜索文件夹中的所有文件,并从文件中删除文本,然后将其余部分写入新的文本文件中。

有人知道怎么做吗?

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 技术交流群。

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

发布评论

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

评论(2

Bonjour°[大白 2024-11-07 02:41:01

我认为这不是 MATLAB 的一个很好的用途。

我认为你最好用 Python 或 shell 编写这个脚本。如果您使用的是 *nix 或 mac,并且您的文件都在同一目录中并且文件扩展名为 .txt,那么您可以使用 shell 中的 tr 来执行此操作,这是一种方法:

#!/bin/sh
for i in `ls *.txt`
do
cat $i | tr -d "[:alpha:]" > $i.tr.txt
done

运行。将上面的代码保存为文件,使其可执行(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:

#!/bin/sh
for i in `ls *.txt`
do
cat $i | tr -d "[:alpha:]" > $i.tr.txt
done

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.

半﹌身腐败 2024-11-07 02:41:01

如果字符串行数始终相同,您可以使用带有 '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.

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