std::wcsrchr
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cwchar>
|
||
const wchar_t* wcsrchr( const wchar_t* str, wchar_t ch ); |
||
wchar_t* wcsrchr( wchar_t* str, wchar_t ch ); |
||
Localiza a última ocorrência do
ch caracteres largos na cadeia de gama apontado por str. Original:
Finds the last occurrence of the wide character
ch in the wide string pointed to by str. The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parâmetros
| str | - | ponteiro para a string terminada em null amplo para ser analisado
Original: pointer to the null-terminated wide string to be analyzed The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| ch | - | caracteres largos para pesquisar
Original: wide character to search for The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
Ponteiro para o caractere encontrado em
str, ou NULL se nenhum desses personagens é encontrada.Original:
Pointer to the found character in
str, or NULL if no such character is found.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Exemplo
| Esta seção está incompleta Motivo: sem exemplo |
