Scilab 5.4.0
- Scilab help
- Strings
- ascii
- blanks
- char
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
isnum
文字列が数字であるかどうかを調べる
呼び出し手順
res = isnum(str)
パラメータ
- str
文字列または文字列の行列.
- res
論理値の行列.
説明
res = isnum(str)
は,
strが数値の場合に %Tを返します.
例
isnum(['1' , .. '-1.23' , .. '+1e+23', .. '1d+23' , .. '%pi'])
参照
- isletter — 文字列の文字がアルファベット文字であるかどうかを調べる
- isdigit — 文字列の文字が0と9の間の数値であるかどうかを調べる
- isalphanum — 文字列の文字がアルファベットまたは数字であるかどうかを調べる
Report an issue | ||
<< isletter | Strings | justify >> |