필터 지우기
필터 지우기

Regular Expressions using regexp

조회 수: 1 (최근 30일)
Priya
Priya 2013년 10월 12일
답변: Walter Roberson 2013년 10월 13일
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".

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2013년 10월 12일
편집: Azzi Abdelmalek 2013년 10월 12일
a={'-2.4,-3';'2,3';'0,5';'-4,-2.5';'A';'V';'C'}
out=a(cellfun(@(x) ~isempty(strfind(x,',')),a))

추가 답변 (1개)

Walter Roberson
Walter Roberson 2013년 10월 13일
regexp(a, '.*,.*', 'match')

카테고리

Help CenterFile Exchange에서 Audio and Video Data에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by