Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
eliminate duplicate in a cell
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi ,im asking if there is a way to eliminate the dublicate,so the result must be('eight two lions') .Any help is greatly appreciated.
>> a
a =
'الأسود إثنان' ('two lions')
>> b
b =
'الأسود ثمانية' ('eight lions')
>> class(a)
ans =
cell
>> class(b)
ans =
cell
>> strcat(b,{' '},a)
ans =
'الأسود ثمانية الأسود إثنان' ('eight lions two lions)
2 commentaires
Elias Gule
le 19 Fév 2015
c = [a ' ' b]; c = unique(regexp([c{:}],'\s+','split'));
tmp = c(2); c(2) = c(3); c(3) = tmp;
Réponses (0)
Cette question est clôturée.
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!