is it a bug?
2 次查看(过去 30 天)
显示 更早的评论
str2num('"abc"')
ans =
"abc"
2 个评论
采纳的回答
per isakson
2019-7-7
编辑:per isakson
2019-7-7
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 个评论
更多回答(0 个)
另请参阅
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!