Rearrange cell array of strings based on occurrence in another cell array of string
7 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Cedric Kotitschke
am 18 Apr. 2023
Kommentiert: Cedric Kotitschke
am 18 Apr. 2023
Hey,
I have two cell arrays of string. Let's call them A and B:
A = {'test1', 'test2'};
B = {'here_test2_occurs', 'here_test1_occurs'};
I know that the elements of A occur in the elements of B. How can I reorder the cell array A so that the elements are in the same order as they occure in B?
Thanks!
0 Kommentare
Akzeptierte Antwort
Stephen23
am 18 Apr. 2023
Bearbeitet: Stephen23
am 18 Apr. 2023
Assuming that every text in B contains exactly one text from A, and that every text in A occurs in B:
A = {'test1', 'test2', 'test1'};
B = {'here_test2_occurs', 'here_test1_occurs'};
F = @(a)find(contains(B,a));
[~,X] = sort(cellfun(F,A));
C = A(X)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!