Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
cstr = {' Trim leading white-space';
'Trim trailing white-space '};
y_correct = {'Trim leading white-space';'Trim trailing white-space'};
assert(isequal(white_space_remove(cstr),y_correct))
ans =
'Trim leading white-space'
'Trim trailing white-space'
|
2 | Pass |
%%
NL = char(0);
TAB = char(9);
x = [NL 32 TAB NL 'AB' 32 NL 'CD' NL 32 TAB NL 32];
y_correct = [NL 32 TAB NL 'AB' 32 NL 'CD' NL 32 TAB NL];
assert(isequal(white_space_remove(x),y_correct))
ans =
AB CD
|
1159 Solvers
Remove the small words from a list of words.
672 Solvers
965 Solvers
Detect a number and replace with two NaN's
178 Solvers
327 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!