std::wcspbrk
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cwchar>
|
||
const wchar_t* wcspbrk( const wchar_t* dest, const wchar_t* str ); |
||
wchar_t* wcspbrk( wchar_t* dest, const wchar_t* str ); |
||
Localiza o primeiro caractere na seqüência de caracteres de largura apontado por
dest, que também está na corda larga apontado por str.Original:
Finds the first character in wide string pointed to by
dest, that is also in 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
| dest | - | 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. |
| src | - | ponteiro para a string terminada em null larga que contém os caracteres a procurar
Original: pointer to the null-terminated wide string that contains the characters 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 primeiro caractere em
dest, que também está em str, ou NULL se não existe tal personagem.Original:
Pointer to the first character in
dest, that is also in str, or NULL if no such character exists.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 |
