How to find and remove certain text from a text file

22 ビュー (過去 30 日間)
Pineapple
Pineapple 2019 年 8 月 8 日
編集済み: Pineapple 2019 年 8 月 14 日
Hi,
I am having trouble removing specific text from a text file. I have a long text file that contains 5 columns and many rows
I am looking for something similar to the functionality of ctrl+F and then remove all of the strings. Essentially I want to isolate the file so it just displays only positive and negative numbers next to Sum-Pnt
  3 件のコメント
Rik
Rik 2019 年 8 月 13 日
Did you delete comments on this thread? That is considered very rude. You're getting free help with your problem, the least you can do is leaving the thread for other people with a similar problem.
And if your flag ("Similar answers available elsewhere on mathworks") is true, why did you need to post the question? Apparently the other threads weren't enough to help you. Maybe this thread will help someone in the future.
@Bob, can you confirm there are deleted comments? In that case, feel free to flag this question so they can be restored.
Pineapple
Pineapple 2019 年 8 月 14 日
@Rik I apologize. I made edits but I will restore necessary info and I have unflagged. The text file I was referring to was in the form shown below and the loop is in the next answer.
Sum-Pnt .5464 -.650 +.650 .5464 -+-+-+
Sum-Pnt .3244 -.650 +.650 .3244 -+-+-+
Sum-Pnt-.9723 -.650 +.650 -.9723 -+-+-+

サインインしてコメントする。

採用された回答

Bob Thompson
Bob Thompson 2019 年 8 月 8 日
As I mentioned, the command would only work for one line at a time. You would need to loop it to get all the lines.
fid = fopen('myfile.txt');
line = fgetl(fid);
c = 1;
while ~isnumeric(line)
number(c) = regexp(text,'Sum-Pnt(.\d.\d+)\s+.*','tokens');
line = fgetl(fid);
c = c + 1;
end
  2 件のコメント
Bob Thompson
Bob Thompson 2019 年 8 月 8 日
Does c advance? The purpose of c is to show you which line you should be reading at a given time.
If you are not sure if it is actually reading each line, you can set a debug point somewhere within the loop and compare the string of line with the corresponding line in the file (line c).
Pineapple
Pineapple 2019 年 8 月 14 日
編集済み: Pineapple 2019 年 8 月 14 日
The loop worked once "text" was replaced with "line". Thank you for your help

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeText Data Preparation についてさらに検索

製品


リリース

R2019a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by