Scilab 5.3.0
- Manual Scilab
- Cadeias de Caracteres (Strings)
- ascii
- blanks
- code2str
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- str2code
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
- tree2code
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
Ver Também
<< isalphanum | Cadeias de Caracteres (Strings) | isdigit >> |