Regular Expressions using regexp
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Priya
am 12 Okt. 2013
Beantwortet: Walter Roberson
am 13 Okt. 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 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 12 Okt. 2013
Bearbeitet: Azzi Abdelmalek
am 12 Okt. 2013
a={'-2.4,-3';'2,3';'0,5';'-4,-2.5';'A';'V';'C'}
out=a(cellfun(@(x) ~isempty(strfind(x,',')),a))
0 Kommentare
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu String Parsing 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!