is it a bug?
2 views (last 30 days)
Show older comments
str2num('"abc"')
ans =
"abc"
2 Comments
Accepted Answer
per isakson
on 7 Jul 2019
Edited: per isakson
on 7 Jul 2019
I call this a bug.
My comments
- The old function, str2num(), uses eval() to do the conversion. "Eval is evil" or at least tricky to use. See https://se.mathworks.com/matlabcentral/answers/51946-systematic-do-not-use-global-don-t-use-eval#answer_63393
- The data type, string, is new.
- str2num('"abc"') is a clever test case, which I assume is not in their test suite.
The last lines of str2num() read
if ischar(x) || iscell(x)
x = [];
ok = false;
end
Adding || isstring to the condition solves the problem - I think.
0 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!