This looks much (c)leaner than the REGEXP method.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
amt = 34.2;
str = '$34.20';
assert(isequal(disp_currency(amt),str))
|
2 | Pass |
%%
amt = 91337585;
str = '$91,337,585.00';
assert(isequal(disp_currency(amt),str))
|
3 | Pass |
%%
amt = -63234922.46;
str = '($63,234,922.46)';
assert(isequal(disp_currency(amt),str))
|
4 | Pass |
%%
amt = 2784.9;
str = '$2,784.90';
assert(isequal(disp_currency(amt),str))
|
6280 Solvers
235 Solvers
Sum of first n terms of a harmonic progression
257 Solvers
97 Solvers
Detect a number and replace with two NaN's
178 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!