isxdigit
Verifica se un elemento in impostazioni locali è un carattere utilizzato per rappresentare un numero esadecimale.
template<Class CharType>
bool isxdigit(
CharType _Ch,
const locale& _Loc
)
Parametri
_Ch
l'elemento da testare._Loc
Le impostazioni locali che contengono l'elemento da testare.
Valore restituito
true se l'elemento è verificato un carattere utilizzato per rappresentare un numero esadecimale; false caso contrario.
Note
La funzione di modello restituisce use_facet<tipo C< char> > (_Loc).viene(ctype< >_double_colon_xdigit, _Chdichar).
Esadecimale base 16 di utilizzo di cifre per rappresentare numeri, utilizzando lettere senza distinzione tra maiuscole e minuscole A di numeri da 0 a 9 con f per rappresentare numeri decimali da 0 a 15.
Esempio
// locale_isxdigit.cpp
// compile with: /EHsc
#include <locale>
#include <iostream>
using namespace std;
int main( )
{
locale loc ( "German_Germany" );
bool result1 = isxdigit ( '5', loc );
bool result2 = isxdigit ( 'd', loc );
bool result3 = isxdigit ( 'q', loc );
if ( result1 )
cout << "The character '5' in the locale is "
<< "a hexidecimal digit-character." << endl;
else
cout << "The character '5' in the locale is "
<< " not a hexidecimal digit-character." << endl;
if ( result2 )
cout << "The character 'd' in the locale is "
<< "a hexidecimal digit-character." << endl;
else
cout << "The character 'd' in the locale is "
<< " not a hexidecimal digit-character." << endl;
if ( result3 )
cout << "The character 'q' in the locale is "
<< "a hexidecimal digit-character." << endl;
else
cout << "The character 'q' in the locale is "
<< " not a hexidecimal digit-character." << endl;
}
Output
The character '5' in the locale is a hexidecimal digit-character.
The character 'd' in the locale is a hexidecimal digit-character.
The character 'q' in the locale is not a hexidecimal digit-character.
Requisiti
intestazione: <locale>
Spazio dei nomi: deviazione standard