◐ Shell
clean mode source ↗

std::wcschr - cppreference.com

Da cppreference.com.

Questa pagina è stata tradotta in modo automatico dalla versione in ineglese della wiki usando Google Translate.

La traduzione potrebbe contenere errori e termini strani. Muovi il puntatore sopra al testo per vedere la versione originale. Puoi aiutarci a correggere gli gli errori. Per ulteriori istruzioni clicca qui.

Click here for the English version of this page

<metanoindex/>

<tbody> </tbody>

Elemento definito nell'header

<cwchar>

const wchar_t* strchr( const wchar_t* str, wchar_t ch );

  wchar_t* strchr( wchar_t* str, wchar_t ch );

Trova la prima occorrenza del carattere esteso ch nella stringa puntata da ampio str.

Original:

Finds the first 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.

Parametri

str -

puntatore alla stringa con terminazione null ampio da analizzare

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 -

carattere esteso da cercare

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.

Valore di ritorno

Puntatore al carattere trovato in str, o in mancanza di NULL tale carattere viene trovato.

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.

Esempio

Vedi anche

trova l'ultima occorrenza di un carattere esteso in una stringa di larghezza

Original:

finds the last occurrence of a wide character in a wide string

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]

trova la prima posizione di carattere largo in una stringa di larghezza, in un'altra stringa di larghezza

Original:

finds the first location of any wide character in one wide string, in another wide string

The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.


(funzione) [modifica]

C documentation for wcschr