Sdílet prostřednictvím


isxdigit

Ověřuje, zda je prvek národní prostředí představují šestnáctkové číslo znaku.

template<Class CharType>
   bool isxdigit(
      CharType _Ch, 
      const locale& _Loc
   )

Parametry

  • _Ch
    Prvek zkoušet.

  • _Loc
    Národní prostředí obsahující prvek, který má být zkoušen.

Vrácená hodnota

True je-li prvek testován znak představují šestnáctkové číslo; FALSE Pokud není.

Poznámky

Vrátí funkce šablony use_facet<ctype< CharType> >(_Loc).is(ctype<CharType>::xdigit, _Ch).

Šestnáctkové číslice použít základní 16 představovat čísla pomocí číslic 0 až 9 a písmena velká a malá písmena a až f představují desetinné čárky čísla 0 až 15.

Příklad

// 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;
}

Výsledek

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.

Požadavky

Záhlaví: <locale>

Obor názvů: std