wcsxfrm
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <wchar.h>
|
||
size_t strxfrm( const wchar_t* dest, const wchar_t* src, size_t count );
|
||
Transforma la cadena terminada en nulo todo apunta
src según la localización en curso y copia los primeros count caracteres anchos de la cadena transformada a destino, volviendo su longitud .Original:
Transforms the null-terminated wide string pointed to by
src according to the current locale and copies the first count wide characters of the transformed string to destination, returning its length.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.
Alternativamente, la función se puede utilizar para recuperar sólo la longitud, especificando un puntero nulo para
dest y 0 para count .Original:
Alternatively, the function can be used to only retrieve the length, by specifying a null pointer for
dest and 0 for count.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 | - | puntero a la cadena de caracteres para copiar la cadena transformada a
Original: pointer to the character string to copy the transformed string to The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| src | - | puntero a la cadena de caracteres terminada en nulo de transformar
Original: pointer to the null-terminated character string to transform The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
| count | - | número máximo de caracteres que desee transformar
Original: maximum number of characters to transform 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
La longitud de la cadena transformada de ancho, sin incluir la terminación nula caracteres .
Original:
The length of the transformed wide string, not including the terminating null-character.
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.
Ejemplo
| Esta sección está incompleta Razón: sin ejemplo |
Ver también
Documentación de C++ para wcsxfrm
|