Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
c={'abcdef' '12345' 'matfile.mat' 'fname.xls'};
str='*.xls';
assert(isequal(stridx(c,str),[4]))
|
2 | Pass |
c={'abcdef' '12345' 'matfile.mat' 'fname.xls'};
str='xls';
assert(isequal(stridx(c,str),[4]))
|
3 | Pass |
c={'abcdef' '12345' 'matfile.mat' 'abcfname.xls'};
str='a*f';
assert(isequal(stridx(c,str),[1 3 4]))
|
4 | Pass |
c={'abcdef' '12345' 'matfile.mat' 'abcfname.xls'};
str='a?f';
assert(isequal(stridx(c,str),[3]))
|
5 | Pass |
c={'abcdef' '12345' 'matfile.mat' 'abcfname.xls'};
str='1*5';
assert(isequal(stridx(c,str),[2]))
|
6 | Pass |
c={'random' 'test.mart' 'rat' 'matfile.mat' 'random.mat' 'matfile'};
str='.ma*t';
assert(isequal(stridx(c,str),[2 4 5]))
|
962 Solvers
Remove white space from the string
168 Solvers
725 Solvers
How many trades represent all the profit?
520 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!