how to find Intersection of strings
Afficher commentaires plus anciens
I have two strings
c1=B0C0D0E9
c2=B0C0E9
Answer I need is B0C0E9. How to find this??
Réponses (1)
Andrei Bobrov
le 6 Juin 2014
Modifié(e) : Andrei Bobrov
le 6 Juin 2014
c2 = regexprep(c1,'D0','');
edit
a1 = reshape(c1,2,[])';
a2 = reshape(c2,2,[])';
l = ismember(a1,a2,'rows');
out = reshape(a1(l,:)',1,[]);
2 commentaires
Hari
le 6 Juin 2014
Andrei Bobrov
le 6 Juin 2014
see code after word edit in my answer
Catégories
En savoir plus sur Vehicle Dynamics Blockset dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!