Problem 42810. String Find with Wildcards of a Cell array
Given a cell array of strings and a search string with single character (?) or multiple character (*) wildness return the indices of the cell array that match.
Examples:
{'abc' 'bdce' 'bkcz'},'b?c' outputs [2 3] 'abc' invalid as ? requires a character {'abcdfhjkfd' 'cf' 'fjhkc' 'fdjk'}, 'c*f' outputs [1 2], no char required for *
Solution Stats
Problem Comments
-
1 Comment
Rafael S.T. Vieira
on 8 Nov 2020
By looking at the solutions, you should probably add a case
c = {'data.mat', 'amat', 'repo.mat', 'matrix', '.mat'}
str = '*.mat'
Solution Comments
Show commentsProblem Recent Solvers15
Suggested Problems
-
Remove the small words from a list of words.
1525 Solvers
-
Project Euler: Problem 5, Smallest multiple
1495 Solvers
-
Back to basics 19 - character types
263 Solvers
-
Flip the main diagonal of a matrix
821 Solvers
-
Basics: 'Find the eigenvalues of given matrix
422 Solvers
More from this Author308
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!