フィルターのクリア

How to remove all the rows containing a substring from a table?

3 ビュー (過去 30 日間)
Chiara Scarpellini
Chiara Scarpellini 2021 年 8 月 10 日
編集済み: Stephen23 2021 年 8 月 11 日
I need to remove all the rows containing the substring Downstream from the table.

採用された回答

Wan Ji
Wan Ji 2021 年 8 月 11 日
Assume the table is named 'myTable'.
Then
p = arrayfun(@(i)strncmpi(myTable.beregnings{i}(end:-1:1),'maertsnwod',10),(1:1:size(myTable,1))','uniform',true);
newTable = myTable(~p,:);
Your newTable is therefore what you want!

その他の回答 (1 件)

Stephen23
Stephen23 2021 年 8 月 11 日
編集済み: Stephen23 2021 年 8 月 11 日
Simple and efficient MATLAB approach:
A = [0;1;2;3;4];
B = ["cat";"hat";"sat_Downstream";"fat";"rat_Downstream"];
C = [5;6;7;8;9];
T = table(A,B,C)
T = 5×3 table
A B C _ ________________ _ 0 "cat" 5 1 "hat" 6 2 "sat_Downstream" 7 3 "fat" 8 4 "rat_Downstream" 9
X = contains(T.B,'Downstream'); % or endsWith
T(X,:) = []
T = 3×3 table
A B C _ _____ _ 0 "cat" 5 1 "hat" 6 3 "fat" 8

カテゴリ

Help Center および File ExchangeMATLAB Report Generator についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by