Info

此问题已关闭。 请重新打开它进行编辑或回答。

how can i convert a string to a number (without using the str2num function) so if the string represents a number the value is 1? (otherwise the value is 0)...

1 次查看(过去 30 天)
for example:
st = '23487';
r = 1;
(also '00023487' is acceptable or any number of leading zeros).
but
st = '-4e';
r = 0;

回答(2 个)

Arthur
Arthur 2012-11-23
r = ~isnan(str2double(st));

Azzi Abdelmalek
Azzi Abdelmalek 2012-11-23
a='1.3125';
r=numel(regexp(a,'[0-9.]'))==numel(a)

此问题已关闭。

标签

产品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by