Scilab-Branch-6.1-GIT
- 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
- 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
strrchr
acha a última ocorrência de um caractere em um string
Seqüência de Chamamento
res = strrchr(str1,char)
Parâmetros
- str1
string ou matriz de strings
- char
caractere
- res
string ou matriz de strings
Descrição
res = strrchr(str1,char)
retorna a última
ocorrência de caractere no string str
num deve ter as mesmas dimensões que str1, ou apenas um caracteres char.
Exemplos
strrchr('Este e um string de amostra','s') strrchr(['Este e um string de amostra','no scilab'],'s') strrchr(['Este e um string de amostra','no scilab'],['s','a'])
Ver Também
Report an issue | ||
<< strncpy | Cadeias de Caracteres (Strings) | strrev >> |