Regular Expressions using regexp
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Priya
le 12 Oct 2013
Réponse apportée : Walter Roberson
le 13 Oct 2013
I have a cell array of strings a = {'-2.4,-3';'2,3';'0,5';'-4,-2.5';'A';'V';'C'}
Now I want to list those strings which have a "comma".
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 12 Oct 2013
Modifié(e) : Azzi Abdelmalek
le 12 Oct 2013
a={'-2.4,-3';'2,3';'0,5';'-4,-2.5';'A';'V';'C'}
out=a(cellfun(@(x) ~isempty(strfind(x,',')),a))
0 commentaires
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur String Parsing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!