wilcard usage with strncmp
이전 댓글 표시
I have a cell array data (C). I use the following code to find specific character in the C;
find_character = strncmp(C, '* 2020', 7);
How can I use wilcard using strncmp to find all patterns satisfy * [0-9][0-9][0-9][0-9]? For example, if * 1988 or * 2000 exist in C, they can be also extracted.
채택된 답변
추가 답변 (1개)
Image Analyst
2021년 5월 16일
0 개 추천
Use the pattern functionality. I think it's easier than regexp().
>> doc pattern
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!