Scilab 6.1.0
- Scilabヘルプ
- Strings
- ascii
- asciimat
- blanks
- char
- convstr
- emptystr
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- prettyprint
- regexp
- sci2exp
- strcat
- strchr
- strcmp
- 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
isascii
文字が7ビットUS-ASCII文字であるかどうかを確認する
呼び出し手順
res = isascii(str)
引数
- str
文字列または整数の配列.
- res
論理値行列.
説明
res = isascii(str)
は,
str
のエントリが
0および8進数表現で0177の間の7ビットUS-ASCII文字コード
(またはstr
のエントリが7ビットUS-ASCII文字列)
の場合に%t
(TRUE),
それ以外の場合に %f
(FALSE).
例
letters = [115. 99. 105. 108. 97. 98.] isascii(letters) ascii(letters) isascii('scilab')
参照
- isalphanum — 文字列の文字がアルファベットまたは数字であるかどうかを調べる
Report an issue | ||
<< isalphanum | Strings | isdigit >> |