How to check if a string contains only numbers?
215 次查看(过去 30 天)
显示 更早的评论
Is there any expression for this ? For example :
-100 should return 1
a100b should return 0
0.1256 should return 1 and so on
0 个评论
采纳的回答
Walter Roberson
2017-12-14
The easiest way is to check if str2double() returns nan. Otherwise you need to parse the string and there are a number of odd cases to account for in scientific notation.
Note: if you do use str2double() you should give some consideration as to what result you want for complex numbers, whether those are to be treated as numeric or as invalid because of the 'i' or 'j' present.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Characters and Strings 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!