std::wcscspn
De cppreference.com
<metanoindex/>
<tbody> </tbody>| Definido no cabeçalho <cwchar>
|
||
std::size_t wcscspn( const wchar_t* dest, const wchar_t* src ); |
||
Retorna o comprimento do segmento inicial máximo da corda larga apontado por
dest, que consiste apenas os caracteres não encontrados na cadeia de gama apontado por src.Original:
Returns the length of the maximum initial segment of the wide string pointed to by
dest, that consists of only the characters not found in wide string pointed to by src.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
O comprimento do segmento inicial máximo que contém somente caracteres não encontrados na cadeia de caracteres apontada por
srcOriginal:
The length of the maximum initial segment that contains only characters not found in the character string pointed to by
srcThe 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 |
