Scilab 6.1.0
- Ajuda do Scilab
- Cadeias de Caracteres (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
verifica se um caractere é do tipo 7-bit US-ASCII
Seqüência de Chamamento
res = isascii(str)
Parâmetros
- str
string
- res
uma matriz de booleanos
Descrição
res = isascii(str)
retorna verdadeiro (%T) se c é
um código 7-bit US-ASCII entre 0 e 0177 octal, inclusive. Caso contrário,
retorna falso (%F).
Exemplos
letters = [115. 99. 105. 108. 97. 98.] isascii(letters) ascii(letters) isascii('scilab')
Ver Também
- isalphanum — verifica se os caracteres de um string são alfanuméricos
Report an issue | ||
<< isalphanum | Cadeias de Caracteres (Strings) | isdigit >> |