Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
s1 = 'The rain in Spain falls mainly on the plain';
s2 = 'The in falls mainly on the ';
assert(strcmp(remAin(s1),s2));
expression =
'\w*ain\>'
replace =
0×0 empty char array
|
2 | Pass |
s1 = 'The pain from my migraine makes me complain';
s2 = 'The from my migraine makes me ';
assert(strcmp(remAin(s1),s2));
expression =
'\w*ain\>'
replace =
0×0 empty char array
|
3 | Pass |
s1 = 'I had to explain that "ain" is not a word';
s2 = 'I had to that "" is not a word';
assert(strcmp(remAin(s1),s2));
expression =
'\w*ain\>'
replace =
0×0 empty char array
|
4106 Solvers
Find relatively common elements in matrix rows
865 Solvers
Back to basics 6 - Column Vector
908 Solvers
The Answer to Life, the Universe, and Everything
383 Solvers
2314 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!