現在この提出コンテンツをフォロー中です。
- フォローしているコンテンツ フィードに更新が表示されます。
- コミュニケーション基本設定に応じて電子メールを受け取ることができます
STRINGISNUMBER returns 1 if the input string contains only a number and otherwise a zero
Created as an example for the thread "How to determine if an inputfield contains chars or numbers ?"
USAGE:
>> StringIsNumber('aseea')
ans = 0
>> StringIsNumber('333')
ans = 1
>> StringIsNumber('333.123')
ans = 1
>> StringIsNumber('.123')
ans = 1
>> StringIsNumber('0.123')
ans = 1
>> StringIsNumber('0.123a')
ans = 0
IT'S NOT FANCY BUT IT WORKS
引用
Michael Robbins (2026). StringIsNumber (https://jp.mathworks.com/matlabcentral/fileexchange/6283-stringisnumber), MATLAB Central File Exchange. に取得済み.
一般的な情報
- バージョン 1.0.0.0 (597 Bytes)
-
ライセンスがありません
MATLAB リリースの互換性
- すべてのリリースと互換性あり
プラットフォームの互換性
- Windows
- macOS
- Linux
| バージョン | 公開済み | リリース ノート | Action |
|---|---|---|---|
| 1.0.0.0 | Digits followed by a period but no more digits is now considered a number. A single period is no longer considered a number. Vector inputs and outputs are supported. |
